HUPhotoBrowser是一个简单的ios图片浏览器第三方开源库, 支持浏览本地图片及网络图片。
在需要浏览的图片的点击事件中调用即可:
- (void)collectionView:(UICollectionView *)collectionView didSelectItemAtIndexPath:(NSIndexPath *)indexPath {
PhotoCell *cell = (PhotoCell *)[collectionView cellForItemAtIndexPath:indexPath];
// [HUPhotoBrowser showFromImageView:cell.imageView withImages:self.images placeholderImage:nil atIndex:indexPath.row dismiss:nil];
[HUPhotoBrowser showFromImageView:cell.imageView withURLStrings:_URLStrings atIndex:indexPath.row];
}
安装:
pod 'HUPhotoBrowser','~> 0.0.2'
在使用cocoapods安装时,请先执行 pod search HUPhotoBrowser,如果搜索不到,请执行pod setup命令。
2022-03-03 11:40:48
3.94MB
视图动画
1