图片放大浏览 仿微信朋友圈LLPhotoBrowser使用简介
2017-05-05 本文已影响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 可进行自定义