All Projects → wangzhaomeng → LLPhotoBrowser

wangzhaomeng / LLPhotoBrowser

Licence: other
精简版图片浏览器,使用UIScrollView进行图片的缩放、平移,可根据需求自定义界面或扩展功能

Programming Languages

objective c
16641 projects - #2 most used programming language

Projects that are alternatives of or similar to LLPhotoBrowser

Txcustomview
图片浏览
Stars: ✭ 13 (-27.78%)
Mutual labels:  photo-browser
Lantern
基于Swift的高可用视图框架
Stars: ✭ 181 (+905.56%)
Mutual labels:  photo-browser
Geeqie
claiming to be the best image viewer / photo collection browser
Stars: ✭ 239 (+1227.78%)
Mutual labels:  photo-browser
Imageglass Preview
🏔 A modern, versatile image viewer (preview)
Stars: ✭ 72 (+300%)
Mutual labels:  photo-browser
Photato
Photato - The personal Pictures gallery
Stars: ✭ 130 (+622.22%)
Mutual labels:  photo-browser
Mvpapp
Android MVP Architecture
Stars: ✭ 2,354 (+12977.78%)
Mutual labels:  photo-browser
Photobrowser
A simple iOS Instagram photo browser written in Swift using Alamofire networking library, SwiftyJSON JSON parsing library and FastImageCache storing and retrieving images library.
Stars: ✭ 533 (+2861.11%)
Mutual labels:  photo-browser
AFTPhotoScroller
A simple photo browser using like iOS photo app.
Stars: ✭ 20 (+11.11%)
Mutual labels:  photo-browser
Lovedoudou
爱逗逗——集新闻资讯,影视评论,漂亮妹子,视频播放于一身的app,用于练习MVP+Retrofit+RxJava+Glide框架,如今将其开源,仅供学习探讨,禁止商用。
Stars: ✭ 165 (+816.67%)
Mutual labels:  photo-browser
Imageglass
🏞 A lightweight, versatile image viewer
Stars: ✭ 3,284 (+18144.44%)
Mutual labels:  photo-browser
Photoviewslider
📷 A simple photo browser for Android applications.
Stars: ✭ 78 (+333.33%)
Mutual labels:  photo-browser
Photostructure For Servers
PhotoStructure for Servers
Stars: ✭ 98 (+444.44%)
Mutual labels:  photo-browser
Unsplash Photopicker Ios
📱An iOS photo picker to search and download photos from Unsplash.
Stars: ✭ 213 (+1083.33%)
Mutual labels:  photo-browser
Photobrowser
Elegant photo browser in Swift. 图片与视频浏览器。
Stars: ✭ 975 (+5316.67%)
Mutual labels:  photo-browser
PhotoMiner
Photo finder application for macOS
Stars: ✭ 102 (+466.67%)
Mutual labels:  photo-browser
Zlphotolib
This is a photo album multiple-choice / photo browser example
Stars: ✭ 889 (+4838.89%)
Mutual labels:  photo-browser
Skphotobrowser
Simple PhotoBrowser/Viewer inspired by facebook, twitter photo browsers written by swift
Stars: ✭ 2,285 (+12594.44%)
Mutual labels:  photo-browser
JKPhotoBrowser
高仿微信、iOS10 相册的图片浏览器,具备拖拽缩放、渐变效果
Stars: ✭ 16 (-11.11%)
Mutual labels:  photo-browser
Odyssey
Next generation gallery. Exceptional images deserve an exceptional presentation.
Stars: ✭ 29 (+61.11%)
Mutual labels:  photo-browser
Fusuma
Instagram-like photo browser and a camera feature with a few line of code in Swift.
Stars: ✭ 2,434 (+13422.22%)
Mutual labels:  photo-browser

我的博客:iOS使用UIScrollView处理图片的缩放(图片浏览器)<br />

//效果图

Image text

Image text

Image text

//代码示例

- (IBAction)btnClick:(UIButton *)sender {
    LLPhotoBrowser *photoBrowser = [[LLPhotoBrowser alloc] initWithImages:_images currentIndex:1];
    photoBrowser.delegate = self;
    [self presentViewController:photoBrowser animated:YES completion:nil];
}

- (void)photoBrowser:(LLPhotoBrowser *)photoBrowser didSelectImage:(UIImage *)image {
    NSLog(@"选中的图片为:%@",image);
}
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].