该框架为原ZLPhotoBrowser
,4.0.0
版本以后由Swift
重新编写,该OC
版本不在维护,Swift
版本有更多功能,请使用Swift
版本
下载完Demo请执行carthage update --use-xcframeworks --platform iOS
(运行时候请选择 Example
target)SDWebImage.framework
和 SDWebImageMapKit.framework
路径如果报错的话,关掉项目,重新打开即可
- 支持横竖屏
- 预览快速选择、可设置预览最大数 (支持拖拽选择)
- 直接进入相册选择 (支持滑动多选)
- 编辑图片 (可自定义裁剪比例)
- 编辑视频
- 查看、选择gif、LivePhoto(iOS9.0)、video
- 3D Touch预览image、gif、LivePhoto、video
- 混合选择image、gif、livePhoto、video
- 在线下载iCloud照片
- 控制选择video最大时长
- 多语言国际化 (中文简/繁、英文、日文,可设置跟随系统和自行切换,可自定义多语言提示)
- 相册内拍照按钮实时显示镜头捕捉画面
- 已选择图片遮罩层标记
- 已选择图片index
- 预览已选择照片
- 预览网络及本地 图片/视频 (图片支持长按保存至相册)
- 相册内图片自定义圆角弧度
- 自定义升序降序排列
- 支持点击拍照及长按录制视频 (仿微信)
- 开发者可自定义资源图片
- 支持导出视频 (可指定导出视频尺寸、添加图片水印、粒子特效 ps:文字水印暂不支持)
如果您在使用中有好的需求及建议,或者遇到什么bug,欢迎随时issue,我会及时的回复
● 1.0.4: 修复无法导出iCloud视频的bug;
● 1.0.1: 适配iOS14 limited权限;
最低支持:iOS 8.0
IDE:Xcode 9.0 及以上版本 (由于适配iPhone X使用iOS11api,所以请使用Xcode 9.0及以上版本)
第一步:
- Manually
- 1.直接把PhotoBrowser文件夹拖入到您的工程中
- 2.导入 Photos.framework及PhotosUI.framework
- 3.项目依赖
SDWebImage
、GPUImage
所以需要导入这两个框架 - 4.导入 "ZLPhotoBrowser.h"
- Cocoapods
- 1.在Podfile 中添加
pod 'ZLPhotoBrowser-objc'
- 2.执行
pod setup
- 3.执行
pod install
或pod update
- 4.导入 <ZLPhotoBrowser/ZLPhotoBrowser.h>
- 1.在Podfile 中添加
- Carthage
- 1.在Cartfile 中添加
github "longitachi/ZLPhotoBrowser-objc"
- 2.执行
carthage update
- 3.导入 <ZLPhotoBrowser/ZLPhotoBrowser.h>
- 1.在Cartfile 中添加
第二步:
- 在项目plist配置文件中添加如下键值对
//如果不添加该键值对,则不支持多语言,相册名称默认为英文
Localized resources can be mixed YES
//或者右键plist文件Open As->Source Code 添加
<key>CFBundleAllowMixedLocalizations</key>
<true/>
//相册使用权限描述
Privacy - Photo Library Usage Description
//相机使用权限描述
Privacy - Camera Usage Description
//麦克风使用权限描述
Privacy - Microphone Usage Description
代码中调用
#import <ZLPhotoBrowser/ZLPhotoBrowser.h>
ZLPhotoActionSheet *ac = [[ZLPhotoActionSheet alloc] init];
// 相册参数配置,configuration有默认值,可直接使用并对其属性进行修改
ac.configuration.maxSelectCount = 5;
ac.configuration.maxPreviewCount = 10;
//如调用的方法无sender参数,则该参数必传
ac.sender = self;
// 选择回调
[ac setSelectImageBlock:^(NSArray<UIImage *> * _Nonnull images, NSArray<PHAsset *> * _Nonnull assets, BOOL isOriginal) {
//your codes
}];
// 调用相册
[ac showPreviewAnimated:YES];
// 预览网络图片
[ac previewPhotos:arrNetImages index:0 hideToolBar:YES complete:^(NSArray * _Nonnull photos) {
// your codes
}];
// 直接调用相机
ZLCustomCamera *camera = [[ZLCustomCamera alloc] init];
camera.doneBlock = ^(UIImage *image, NSURL *videoUrl) {
// 自己需要在这个地方进行图片或者视频的保存
};
[self showDetailViewController:camera sender:nil];
- Multiple orientations support: Portrait, Landscape
- Adaption with iPhone X
- Supports quick selection in preview list, can set maximum preview numbers (drag selection supported)
- Select from album directly (slide to select multiple images is supported)
- Edit images (image filter, cut-out proportion can be customized)
- Edit videos
- View and select gif, LivePhoto(iOS 9.0+), video
- 3D Touch preview image, gif, LivePhoto, video
- Select image, gif, LivePhoto, video assembly
- Download photos from iCloud online
- Control to select video max play time
- Internationalization (current supported: Simple Chinese, English, Japanese, Traditional Chinese. Can follow system or changed in code. Can specify the other language)
- Including camera cell in album, rendering captured image in real time
- Able to have a mask on selected items
- Preview selected items
- Preview images/videos saved locally or online (long press to save image to album is supported)
- Customize radius of images in album
- Able to sort ascending items or descending items
- Click to take photos or long press to record videos is supported (just like WeChat)
- Can customize resource images
- Able to Export video (Can specify video size or add an image watermark or particle effects. PS: text watermark is not supported currently)
iOS 8.0+ Xcode 9.0+
Step1
-
Manually
-
- Drag PhotoBrowser/ folder into your project
-
- Import Photos.framework and PhotosUI.framework
-
- This repo relays on SDWebImage and GPUImage, so you also need it
-
- Import "ZLPhotoActionSheet.h" at where you wanna use it
-
Cocoapods
-
- Add
pod 'ZLPhotoBrowser'
to your Podfile
- Add
-
pod setup
-
pod install
orpod update
-
- import
<ZLPhotoBrowser/ZLPhotoBrowser.h>
- import
-
Carthage
- 1.Add
github "longitachi/ZLPhotoBrowser"
to your Cartfile - 2.Run
carthage update --platform ios
and add the framework to your project. - 3.import
<ZLPhotoBrowser/ZLPhotoBrowser.h>
- 1.Add
Step2
- add description in info.plist
Localized resources can be mixed YES
Privacy - Photo Library Usage Description
Privacy - Camera Usage Description
Privacy - Microphone Usage Description
- 3DTouch预览效果图
- 导出视频添加粒子特效(雪花效果)
- 编辑视频预览图
- 编辑图片预览图
- 自定义相机效果图及介绍
- 滑动多选预览图
- 拖拽选择预览图
- 混合选择预览图
- 横屏预览图
- 预览网络图片
- 遮罩层
- 预览快速多选效果图
- 直接进入相册选择相片效果图
- 预览大图及缩放效果图
- 拍照
- 相册内混合选择效果图
- 预览已选择照片效果图
- 原图功能效果图