MSImagePickerController
MSImagePickerController copied to clipboard
A subclass of UIImagePickerController that support multi select. (一个支持多选的UIImagePickerController的子类)
是否可以把勾号的UIImage的userInteractionEnabled设置为NO,这样图片就不会影响到选择的点击事件
- (void) addCurrentImage:(UIImage*) image { NSInteger index = [self isCurIndexInIndexPaths]; if (index == NSNotFound) { [self.allImages addObject:image]; [self.indexPaths addObject:self.curIndexPath]; UIView* cell = [self.collectionView cellForItemAtIndexPath:self.curIndexPath]; [self addIndicatorButton:cell]; } } 这人self。curIndexPath为空了
picker.topViewController.navigationItem.rightBarButtonItem = self.doneButton 这句执行了但立马被设置回原有自带的cancel了 我用的iOS10的虚拟机 另外问一下,这种方式允许上架么?