一款iOS高性能图片浏览器,依赖SDWebImage,支持浏览本地图片及网络图片,支持CocoaPods安装
HJPhotoBrowser is available on CocoaPods. Just add the following to your project Podfile:
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
{
HJCollectionViewDemoCell *cell = (HJCollectionViewDemoCell *)[self collectionView:self.collectionView
cellForItemAtIndexPath:[NSIndexPath indexPathForItem:index inSection:0]];
return cell.imageView.image;
}
#pragma 图片的地址
-(NSURL *)photoBrowser:(HJPhotoBrowser *)browser highQualityImageURLForIndex:(NSInteger)index
{
return [NSURL URLWithString:_dailyModel.picArray[index]];
}