文章来源:淘论文网   发布者: 毕业设计   浏览量: 31



还可以点击去查询以下关键词:
[类似于]    [UITableView]    [且极]    [图片]    [浏览器]    [类似于UITableView且极简的图片浏览器]   

项目介绍:

EZImageBrowserKit

类似于UITableVie代写w且极简的图片浏览器

类似于UITableVie代写w且极简的图片浏览器

类似于UITableVie代写w且极简的图片浏览器

类似于UITableVie代写w且极简的图片浏览器

类似于UITableVie代写w且极简的图片浏览器

预览

类似于UITableVie代写w且极简的图片浏览器

介绍

一款轻量级的图片浏览器,快速集成,简单易用(类似于UITableView的使用方法)可定制性强。

要求

iOS 8.0+ (源码测试了是支持iOS7的,这里是动态库,所以支持iOS8+了)

Xcode 8.3.3 (8E3004b)+
特性

图片复用

图片显示/消失的多种动画

长按,单击,双击手势

图片浏览器和图片cell自定义(支持xib)

本地图片和远程图片完全自定义

缓存自定义,这样可以使用你系统的一套缓存机制,低侵占性
安装 ExportFramework

执行项目中的ExportFramework脚本自动生成framework

Carthage

创建一个 Cartfile ,在这个文件中列出你想使用的 frameworks

github 'easyui/EZImageBrowserKit'

运行 carthage update ,获取依赖到 Carthage/Checkouts 文件夹,逐个构建

在工程的 target-> General 选项下,拖拽 Carthage/Build 文件夹内想要添加的 framework 到 “Linked Frameworks and Libraries” 选项下。 (如果不想拖动这个操作的话,可以设置Xcode自动查询Framework的目录 Target—>Build Setting—>Framework Search Path—>添加路径"$(SRCROOT)/Carthage/Build/iOS")

在工程的 target-> Build Phases 选项下,点击 “+” 按钮,选择 “New Run Script Phase” ,填入如下内容:

/usr/local/bin/carthage copy-frameworks

并在 “Input Files” 选项里添加 framework 路径

$(SRCROOT)/Carthage/Build/iOS/EZImageBrowserKit.framework
CocoaPods

创建一个 Podfile ,在这个文件中列出你想使用的 frameworks

project '<Your Project Name>.xcodeproj'platform :ios, '8.0'target '<Your Target Name>' do  use_frameworks!  pod 'EZImageBrowserKit' end

在 Podfile 文件目录下执行

$ pod install
使用

初始化图片浏览器并且显示
  EZImageBrowser *browser = [[EZImageBrowser alloc] init];    [browser setDelegate:self];    [browser showFromView:cell currentIndex:indexPath.row completion:nil];

图片浏览器支持配置属性
///cell的左右边距 default: 20@property (nonatomic, assign) CGFloat cellMarginForLandscape;/** cneter default:x = center,y = to bottm 20 (EZImageBrowserPageTextPositionBottom) fonr  default: [UIFont systemFontOfSize:16] text color: default:white */@property (nonatomic, strong, readonly) UILabel *pageTextLabel;//default: EZImageBrowserPageTextPositionBottom@property (nonatomic, assign) EZImageBrowserPageTextPosition pageTextPosition;/// default: NO@property (nonatomic, assign) BOOL supportLongPress;

图片浏览器支持的代理
@protocol EZImageBrowserDelegate <NSObject>@required/** 每个cell的回调  @param imageBrowser 图片浏览器 @param index 当前cell索引 @return 返回cell,不能为nil,nil会crash */- (EZImageBrowserCell *)imageBrowserEZImageBrowser *)imageBrowser cellForRowAtIndexNSInteger )index;/** cell总数的回调  @param imageBrowser 图片浏览器 @return cell总数 */- (NSInteger)numberOfCellsInImageBrowserEZImageBrowser *)imageBrowser;@optional/** cell中图片默认大小的回调,不实现这个代理,会使用image的大小  @param imageBrowser 图片浏览器 @param index 当前cell索引 @return cell中图片大小 */- (CGSize)imageBrowserEZImageBrowser *)imageBrowser  imageViewSizeForItemAtIndexNSInteger)index;/** 显示cell后的回调  @param imageBrowser 图片浏览器 @param cell 当前cell @param index 当前cell索引 */- (void)imageBrowserEZImageBrowser *)imageBrowser didDisplayingCellEZImageBrowserCell *)cell atIndexNSInteger)index;/** 获取对应cell原空间的回调,dimmiss的时候可以动画返回对应位置  @param imageBrowser 图片浏览器 @param index 当前cell索引 @return 对应cell原控件 */- (nullable UIView *)imageBrowserEZImageBrowser *)imageBrowser fromViewForItemAtIndexNSInteger)index;/** 获取page text的文本的回调,实现此代理可自定义  @param imageBrowser 图片浏览器 @param index 当前cell索引 @param count cell总数 @return page text 自定义文本 */- (NSString *)imageBrowser:(EZImageBrowser *)imageBrowser  pageTextForItemAtIndex:(NSInteger)index count:(NSInteger)count;/** 长按事件触发回掉,必须supportLongPress = YES来启动  @param imageBrowser 图片浏览器 @param index 当前cell索引 */- (void)imageBrowser:(EZImageBrowser *)imageBrowser didLongPressCellAtIndex:(NSInteger)index;/** 单机事件触发,实现后默认dismiss不起作用  @param imageBrowser 图片浏览器 @param index 当前cell索引 */- (void)imageBrowser:(EZImageBrowser *)imageBrowser didClickCellAtIndex:(NSInteger)index;/** 双击事件触发,实现后默认双击放大不起作用   @param imageBrowser 图片浏览器 @param index 当前cell索引 */- (void)imageBrowser:(EZImageBrowser *)imageBrowser didDoubleClickCellAtIndex:(NSInteger)index;/** 图片浏览器将显示的回调  @param imageBrowser 图片浏览器 */- (void)imageBrowserWillAppear:(EZImageBrowser *)imageBrowser;/** 图片浏览器已显示的回调  @param imageBrowser 图片浏览器 */- (void)imageBrowserDidAppear:(EZImageBrowser *)imageBrowser;/** 图片浏览器将消失的回调  @param imageBrowser 图片浏览器 */- (void)imageBrowserWillDisappear:(EZImageBrowser *)imageBrowser;/** 图片浏览器已消失的回调  @param imageBrowser 图片浏览器 */- (void)imageBrowserDidDisappear:(EZImageBrowser *)imageBrowser;@end#p#分页标题#e#

复用性
- (EZImageBrowserCell *)imageBrowser:(EZImageBrowser *)imageBrowser cellForRowAtIndex:(NSInteger )index{        EZImageBrowserCell *cell = [imageBrowser dequeueReusableCell];        if (!cell) {            cell = [[EZImageBrowserCell alloc] init];        }        cell.imageView.image =  [UIImage imageNamed:self.imageUrlStringArray[index]];        return cell;}License

EZImageBrowserKit遵守MIT协议,开题报告,具体请参考MIT


源码地址:https://github.com/easyui/EZImageBrowserKit

开题报告

这里还有:


还可以点击去查询:
[类似于]    [UITableView]    [且极]    [图片]    [浏览器]    [类似于UITableView且极简的图片浏览器]   

请扫码加微信 微信号:sj52abcd


下载地址: http://www.taolw.com/down/6380.docx
  • 上一篇:CCTextView - 输入组件
  • 下一篇:CustomPicker,DatePicker,AddressPicker