美文网首页
iOS 相册,照片选择,图片选择器,类似微信的样子

iOS 相册,照片选择,图片选择器,类似微信的样子

作者: 我是帅帅唐僧 | 来源:发表于2017-08-23 15:47 被阅读377次

TSPhotoBrow
Photos.framework封装的图片选择浏览器,适配iOS8以上
demo

🌚我什么都没看见(前女友照,就当做没看见吧!嗯)


示例图.png

使用方法

- (void)localPhoto

{
   __weak typeof(self)weakSelf = self;
   // --检查相册权限
   [TSCameraHelper checkPhotoLibraryAuthorizationStatus:^(BOOL granted) {
       if (granted) {
           // --设置图片回调
           [TSPhotoManager sharedInstance].imageCallBack = ^(NSArray<UIImage *> *images) {
               [weakSelf.images addObjectsFromArray:images];
               [weakSelf updateCollectionViewHeight];
                
           };
           // --设置Data回调
           [TSPhotoManager sharedInstance].imageDataCallBack = ^(NSArray<NSData *> *imageDatas) {
                
           };
           // --设置需要的图片尺寸
           [TSPhotoManager sharedInstance].photoSize = CGSizeMake(PhotoItemWH, PhotoItemWH);
           // --设置图片数量
           [TSPhotoManager sharedInstance].maxPhotoCount = weakSelf.maxImageCount - weakSelf.images.count;
           // --跳转相册
           [weakSelf.delegateViewController presentViewController:[TSPhotoNavigationController new] animated:YES completion:nil];
       }
   }];
}

demo

相关文章

网友评论

      本文标题:iOS 相册,照片选择,图片选择器,类似微信的样子

      本文链接:https://www.haomeiwen.com/subject/bboddxtx.html