仿照今日头条的图片浏览工具。
左右切换 | 加载网络图片 | 捏合、双击 | 下滑隐藏 | 保存到相册 |
---|---|---|---|---|
- 支持Gif图片显示
- 支持本地、网络图片显示
- 依赖两个框架SDWebImage、FLAnimatedImage
查看网络图片:
[[XLImageViewer shareInstanse] showNetImages:[self imageUrls] index:indexPath.row fromImageContainer:[collectionView cellForItemAtIndexPath:indexPath]];
查看本地图片:
[[XLImageViewer shareInstanse] showLocalImages:[self imagePathes] index:indexPath.row fromImageContainer:[collectionView cellForItemAtIndexPath:indexPath]];
之前利用ScrollView实现切换的版本:戳这里