美文网首页Cocoa 框架cocoaiOS Cocoa
图片放大浏览 仿微信朋友圈LLPhotoBrowser使用简介

图片放大浏览 仿微信朋友圈LLPhotoBrowser使用简介

作者: 奥卡姆剃须刀 | 来源:发表于2017-05-05 15:16 被阅读493次

自己在工作闲暇之余写了仿微信朋友圈的图片浏览放大的框架 LLPhotoBrowser
希望能帮助大家快速开发 有什么问题可留言本人第一时间解答问题
有问题可留言 有喜欢的可动动小指头点赞
GitHub地址:https://github.com/liuniuliuniu/LLPhotoBrowser

效果图

LLPhotoBrowserAnim.gif

使用方法

 (void)collectionView:(UICollectionView *)collectionView didSelectItemAtIndexPath:(NSIndexPath *)indexPath{
    // 1 初始化
    LLPhotoBrowser *photoBrowser = [[LLPhotoBrowser alloc]init];
    // 2 设置代理
    photoBrowser.delegate = self;
    // 3 设置当前图片
    photoBrowser.currentImageIndex = indexPath.item;
    // 4 设置图片的个数
    photoBrowser.imageCount = self.photoArr.count;
    // 5 设置图片的容器
    photoBrowser.sourceImagesContainerView = self.collectionView;
    // 6 展示
    [photoBrowser show];

}
// 代理方法 返回图片URL
- (NSURL *)photoBrowser:(LLPhotoBrowser *)browser highQualityImageURLForIndex:(NSInteger)index{
    
    NSURL *url = [NSURL URLWithString:self.photoArr[index]];    
    return url;
}
// 代理方法返回缩略图
- (UIImage *)photoBrowser:(LLPhotoBrowser *)browser placeholderImageForIndex:(NSInteger)index{
    
    NSIndexPath *indexPath = [NSIndexPath indexPathForItem:index inSection:0];
    
    LLPhotoCell *cell = (LLPhotoCell *)[self.collectionView cellForItemAtIndexPath:indexPath];
    
    return cell.bigImgV.image;
    
}

此外 :里边长按图片进行保存图片的LLActionSheetView 可进行自定义

相关文章

网友评论

  • b3942bfab34b:长按图片弹出保存选项的时候,一旦手指动了,就会一直弹出保存的窗口,望能尽快解决
    b3942bfab34b:问题解决了,UILongPressGestureRecognizer方法里面的状态判断错误,你写的是 if (recognizer.state != UIGestureRecognizerStateEnded),我改成if (recognizer.state == UIGestureRecognizerStateBegan) 就没有问题了。
  • 壹123:我这边使用,点击放大图片下面黑色的区域直接闪退了?
    奥卡姆剃须刀:我这边没有出现你说的问题呢 你方便加我一下QQ吗 我帮你调试一下
  • 秋刀生鱼片:感谢分享,github上面图片没有传好,建议github上存一份就可以显示了
    奥卡姆剃须刀:好的 谢谢支持:smile:

本文标题:图片放大浏览 仿微信朋友圈LLPhotoBrowser使用简介

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