- 授权协议: MIT
- 开发语言: Objective-C
- 操作系统: iOS
- 软件首页: https://github.com/banchichen/TZImagePickerController
- 软件文档: https://github.com/banchichen/TZImagePickerController
- 官方下载: https://github.com/banchichen/TZImagePickerController
软件介绍
TZImagePickerController 是一个支持多选、选原图和视频的图片选择器,同时有预览功能,支持 iOS6+。
一. Installation 安装
CocoaPods
pod 'TZImagePickerController'
Carthage
github "banchichen/TZImagePickerController"
手动安装
将 TZImagePickerController 文件夹拽入项目中,导入头文件:#import "TZImagePickerController.h"
二. Example 例子
TZImagePickerController *imagePickerVc = [[TZImagePickerController alloc] initWithMaxImagesCount:9 delegate:self];// You can get the photos by block, the same as by delegate.// 你可以通过block或者代理,来得到用户选择的照片.[imagePickerVc setDidFinishPickingPhotosHandle:^(NSArray<UIImage *> *photos, NSArray *assets) {
}];
[self presentViewController:imagePickerVc animated:YES completion:nil];三. Requirements 要求
iOS6 及以上系统可使用. ARC环境.
如果运行在 iOS6 或 7 系统上,用的是 AssetsLibrary 库获取照片资源。
如果运行在 iOS8 及以上系统上,用的是 PhotoKit 库获取照片资源。
iPhone开发实战
2009-10 / 69.00元
《iPhone开发实战》全面探讨了iPhone平台的两种编程方式——Web开发和SDK编程。全书结合示例对这两种编程方式的基本流程、基本原理和基本原则给出了详细而通俗的讲解。在Web开发方面,分别介绍了三个iPhone Web库,即WebKit、iUI和Canvas,并讨论了Web开发环境Dashcode,最后阐述Web应用程序的调试。在SDK开发方面,详细描述其各种组件和功能,包括Xcode、I......一起来看看 《iPhone开发实战》 这本书的介绍吧!
