高仿新浪微博照片选择器 (在iOS代码库中浏览本帖)
关键字:微博 多选照片
代码类库:系统功能(Phone,Camera...)
GitHub链接:https://github.com/yifriday/YBImgPicker
//使用方法:
YBImgPickerViewController * next = [[YBImgPickerViewController alloc]init];
[next showInViewContrller:self choosenNum:0 delegate:self];
//直接创建,调用显示方法
//回调:
(void)YBImagePickerDidFinishWithImages:(NSArray *)imageArray {
for (UIImage * image in imageArray) {
.......
}
}
测试环境:Xcode 6.2,iOS 6.0 以上 |
|