Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mengxianliang/xlimageviewer
iOS 仿照今日头条的图片浏览工具。
https://github.com/mengxianliang/xlimageviewer
image scrollview sdwebimage viewer
Last synced: about 1 month ago
JSON representation
iOS 仿照今日头条的图片浏览工具。
- Host: GitHub
- URL: https://github.com/mengxianliang/xlimageviewer
- Owner: mengxianliang
- Created: 2017-02-21T07:48:18.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2021-09-08T05:57:27.000Z (over 3 years ago)
- Last Synced: 2024-12-09T12:03:28.752Z (about 2 months ago)
- Topics: image, scrollview, sdwebimage, viewer
- Language: Objective-C
- Homepage:
- Size: 6.64 MB
- Stars: 164
- Watchers: 7
- Forks: 44
- Open Issues: 10
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# XLImageViewer
仿照今日头条的图片浏览工具。
### 功能:
| 左右切换 | 加载网络图片 | 捏合、双击 | 下滑隐藏 | 保存到相册 |
| ---- | ---- | ---- | ---- | ---- |
| ![image](https://github.com/mengxianliang/XLImageViewer/blob/master/GIF/1-1.gif) |![image](https://github.com/mengxianliang/XLImageViewer/blob/master/GIF/2-1.gif) |![image](https://github.com/mengxianliang/XLImageViewer/blob/master/GIF/3-1.gif) |![image](https://github.com/mengxianliang/XLImageViewer/blob/master/GIF/4-1.gif) |![image](https://github.com/mengxianliang/XLImageViewer/blob/master/GIF/5-1.gif) |### 说明:
* 支持Gif图片显示
* 支持本地、网络图片显示
* 依赖两个框架[SDWebImage](https://github.com/rs/SDWebImage)、[FLAnimatedImage](https://github.com/Flipboard/FLAnimatedImage)### 使用:
**查看网络图片:**
```objc
[[XLImageViewer shareInstanse] showNetImages:[self imageUrls] index:indexPath.row fromImageContainer:[collectionView cellForItemAtIndexPath:indexPath]];
```**查看本地图片:**
```objc
[[XLImageViewer shareInstanse] showLocalImages:[self imagePathes] index:indexPath.row fromImageContainer:[collectionView cellForItemAtIndexPath:indexPath]];
```### 其他:
**之前利用ScrollView实现切换的版本:[戳这里](http://download.csdn.net/detail/u013282507/9820283)**
### 个人开发过的UI工具集合 [XLUIKit](https://github.com/mengxianliang/XLUIKit)