HJPhotoBrowser 正在参加 2021 年度 OSC 中国开源项目评选,请投票支持!
HJPhotoBrowser 在 2021 年度 OSC 中国开源项目评选 中已获得 {{ projectVoteCount }} 票,请投票支持!
2021 年度 OSC 中国开源项目评选 正在火热进行中,快来投票支持你喜欢的开源项目!
2021 年度 OSC 中国开源项目评选 >>> 中场回顾
HJPhotoBrowser 获得 2021 年度 OSC 中国开源项目评选「最佳人气项目」 !
授权协议 MIT
操作系统 iOS
软件类型 开源软件
所属分类 iOS代码库图像(Image)
开源组织
地区 国产
投 递 者 coder-zwz
适用人群 未知
收录时间 2016-12-29

软件简介

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]];
  }
展开阅读全文

代码

的 Gitee 指数为
超过 的项目

评论

点击加入讨论🔥(1) 发布并加入讨论🔥
暂无内容
发表了博客
{{o.pubDate | formatDate}}

{{formatAllHtml(o.title)}}

{{parseInt(o.replyCount) | bigNumberTransform}}
{{parseInt(o.viewCount) | bigNumberTransform}}
没有更多内容
暂无内容
发表了问答
{{o.pubDate | formatDate}}

{{formatAllHtml(o.title)}}

{{parseInt(o.replyCount) | bigNumberTransform}}
{{parseInt(o.viewCount) | bigNumberTransform}}
没有更多内容
暂无内容
暂无内容
1 评论
1 收藏
分享
OSCHINA
登录后可查看更多优质内容
返回顶部
顶部