HJPhotoBrowser 介绍
HJPhotobrowser 是一款 iOS 高性能图片浏览器,依赖 SDWebImage,支持浏览本地图片及网络图片,支持 CocoaPods 安装。
主要功能
图片浏览
Installation
CocoaPods
pod 'HJPhotobrowser' # Podfile
代码示例
- (void)collectionView:(UICollectionView *)collectionView didSelectItemAtIndexPath:(NSIndexPath *)indexPath { NSInteger count = _dailyModel.picArray.count; HJPhotobrowser *browser = [[HJPhotobrowser alloc] init]; browser.sourceImagesContainerView = collectionView; browser.imageCount = count; browser.currentimageIndex = indexPath.row; browser.delegate = self; [browser show]; } #pragma 占位图 -(UIImage *)photobrowser:(HJPhotobrowser *)browser placeholderImageForIndex:(NSInteger)index { return [UIImage imageNamed:@"error_image"]; } #pragma 图片的地址 -(NSURL *)photobrowser:(HJPhotobrowser *)browser highQualityImageURLForIndex:(NSInteger)index { return [NSURL URLWithString:_dailyModel.picArray[index]]; }