我在我的应用程序中使用 MWPhotoBrowser。
我只需要在选择模式下强制选择一张照片。
有什么方法或技巧可以实现该功能吗?
提前致谢!!
我在我的应用程序中使用 MWPhotoBrowser。
我只需要在选择模式下强制选择一张照片。
有什么方法或技巧可以实现该功能吗?
提前致谢!!
在 MWPhotoBrowser 的委托方法的实现中带来以下变化。
- (void)photoBrowser:(MWPhotoBrowser *)photoBrowser photoAtIndex:(NSUInteger)index selectedChanged:(BOOL)selected {
for (int i=0;i<selectedPhotos.count;i++)
{
[selectedPhotos replaceObjectAtIndex:i withObject:[NSNumber numberWithBool:NO]];
}
[selectedPhotos replaceObjectAtIndex:index withObject:[NSNumber numberWithBool:selected]];
}