iCarousel的简单介绍及应用
iOS开源类iCarousel介绍
iCarousel是一个类,它继承于UIView,用于简化实现各种类型的旋转木马(分页滚动视图)iPhone、iPad和Mac OS。iCarousel实现一些常见的影响如圆柱、平面式的旋转木马。经过 iCarousel类的封装,使iCarousel类的使用方式类似于UITableView的使用,每一个界面类似于一个单元格。 iCarousel内先创建一个可变字典,用于存储需要显示的单元格视图。创建一个父视图用于显示单元格视图,从字典中取出需要显示的单元格视图添加到创建父视图上,用于显示需要创建的单元格视图,在iCarousel类的内部对这些需要显示的单元格视图进行布局。
CarouselType,即Carousel类型
typedef NS_ENUM(NSUInteger, iCarouselType)
{
iCarouselTypeLinear = 0, //线性类型
iCarouselTypeRotary, //可旋转类型
iCarouselTypeInvertedRotary, //反向旋转类型
iCarouselTypeCylinder, //圆柱类型
iCarouselTypeInvertedCylinder, //反向圆柱类型
iCarouselTypeWheel, //车轮类型
iCarouselTypeInvertedWheel, //反向车轮类型
iCarouselTypeCoverFlow, //封面流类型
iCarouselTypeCoverFlow2, //封面流类型2
iCarouselTypeTimeMachine, //时光机类型
iCarouselTypeInvertedTimeMachine, //反向时光机类型
iCarouselTypeCustom //可自定义Carousel类型
};
1.iCarouselTypeLinear线性类型
2.iCarouselTypeRotary可旋转类型
3.iCarouselTypeInvertedRotary反向旋转类型
4.iCarouselTypeCylinder圆柱类型
5.iCarouselTypeInvertedCylinder反向圆柱类型
6.iCarouselTypeWheel车轮类型
7.iCarouselTypeInvertedWheel反向车轮类型
8.iCarouselTypeCoverFlow封面流类型
9.iCarouselTypeCoverFlow2封面流类型2
iCarouselTypeCoverFlow和 iCarouselTypeCoverFlow2样式的不同之处很细微,如果你轻弹carousel,他们基本上是一样的,但是如果你使用手指慢慢拖动carousel,不同点就会明显。iCarouselTypeCoverFlow2 是为了模拟尽可能接近标准的苹果封面流效果而设计的,并且可能在未来会为了这个目标而巧妙地变化。
10.iCarouselTypeTimeMachine时光机类型
11.iCarouselTypeInvertedTimeMachine反向时光机类型
12.iCarouselTypeCustom可自定义Carousel类型,type设置为iCarouselTypeCustom,在代理函数实现自定义动画
- (CATransform3D)carousel:(iCarousel *)carousel itemTransformForOffset:(CGFloat)offset baseTransform:(CATransform3D)transform
常用属性介绍
@property (nonatomic, assign) iCarouselType type;
type是carousel展示样式,上面有介绍。
@property (nonatomic, assign) CGFloat scrollSpeed;
当用户用手指轻击carousel时,carousel的滚动速度,默认为1.0。
@property (nonatomic, assign, getter = isScrollEnabled) BOOL scrollEnabled;
能否滚动carousel,如果这个值被设为NO,carousel仍然可以以编程方式被滚动。
@property (nonatomic, assign, getter = isPagingEnabled) BOOL pagingEnabled;
整页平移是否开启,一般设置为YES。
@property (nonatomic, assign) BOOL bounces;
设置carousel在超出底部和返回时是否应该弹跳,或者是停止并挂掉。注意,在carousel样式设置为缠绕样式时或者carouselShouldWrap代理方法返回为yes时,这个属性不起作用。
@property (nonatomic, assign) CGFloat scrollOffset;
这是以itemWidth的整数倍来计算的carousel当前的滚动偏移量,这个值,被截取为最接近的整数,是currentItemIndex值。当carousel运动中,你可以使用这个值定位其他屏幕的元素。这个值也可以被编程方式设置如果你想滚动carousel到一个特定的偏移。如果你想禁用内置手势处理并提供自己的实现时,这个可能有用。
@property (nonatomic, readonly) CGFloat offsetMultiplier;
这是当用户用手指拖动carousel时偏移量的乘数。它并不影响编程的滚动和减速的速度。对大多数carousel样式这个默认值是1.0,但是对CoverFlow-style样式的carousels默认值是2.0,来弥补他们的items在空间上更紧凑,所以必须拖拽更远来移动相同的距离的事实。你不能直接设置这个值,但是可以通过实现carouselOffsetMultiplier:代理方法来重写默认值。
@property (nonatomic, readonly) NSInteger numberOfItems;
carousel中 items的数量(只读),要设置他的话,实现 numberOfItemsInCarousel:这个数据源方法。
@property (nonatomic, readonly) NSInteger numberOfPlaceholders;
在carousel中展示的占位视图的数量(只读)。要设置他,实现一下numberOfPlaceholdersInCarousel:这个数据源方法。
@property (nonatomic, readonly) CGFloat itemWidth;
carousel中展示的items的宽度(只读)。这是自动从使用carousel:viewForItemAtIndex:reusingView:数据源方法第一个传到carousel中的视图中继承来的。你也可以使用carouselItemWidth:代理方法重写这个值,这个方法会改变分配给carousel items的空间(但是不会对这些item views重写设置大小或规模)。
@property (nonatomic, assign) BOOL centerItemWhenSelected;
当设置为YES时,点击任何在carousel 中的item而不是那个匹配currentItemIndex 的视图,将会使平滑动画移动到居中位置。点击当前被选中的item将没有效果。默认值是YES。
@property (nonatomic, assign) BOOL scrollToItemBoundary;
默认情况下,不管carousel何时停止移动,他会自动滚动到最近的item 边界。如果你设置这个属性为NO,carousel停止后将不会滚动且不管在哪儿他都会停下来,即使他不是正好对准当前的索引。有一个特例,如果打包效果被禁止且bounces被设置为YES,然后,不管这个设置是什么,carousel会自动滚回第一个或者最后一个索引,如果它停下来时超出了carousel的底部。
iCarousel方法介绍
- (void)scrollToItemAtIndex:(NSInteger)indexanimated:(BOOL)animated;
顾名思义,这个方法是使carousel滚动到一个特定的item。
- (void)scrollToItemAtIndex:(NSInteger)index duration:(NSTimeInterval)duration;
这个方法允许你来控制carousel使用 多长时间来滚动到特定的索引。
- (void)scrollToOffset:(CGFloat)offsetduration:(NSTimeInterval)duration;
这个方法工作起来和 scrollToItemAtIndex:方法一样,但是允许你移动到一个微小的偏移。如果你想达到一个非常准确的动画效果时这个可能有用。注意,如果scrollToItemBoundary属性被设置为YES,当你调用这个方法之后carousel会自动滚动到最近的item索引。
- (void)scrollByNumberOfItems:(NSInteger)itemCount duration:(NSTimeInterval)duration;
这个方法允许你使用一个固定的距离滚动carousel,以carousel的item宽度来衡量。整数或负数可能由itemCount来具体确定,取决于你希望滚动的方向。iCarousel很好的处理了边界问题,所以如果你指定了一个大于carousel中items数量的值,滚动或者在到达carousel底部时被夹紧(如果打包被禁止),或者无停顿地包裹。
- (UIView *)itemViewAtIndex:(NSInteger)index;
返回指定索引的item视图。
- (NSInteger)indexOfItemView:(UIView *)view;
返回carousel视图的索引。
- (void)removeItemAtIndex:(NSInteger)index animated:(BOOL)animated;//移除视图
- (void)insertItemAtIndex:(NSInteger)index animated:(BOOL)animated;//插入视图
- (void)reloadItemAtIndex:(NSInteger)index animated:(BOOL)animated;//刷新视图
iCarouselDataSource
- (NSUInteger)numberOfItemsInCarousel:(iCarousel *)carousel;
返回carousel中界面的数量。
- (UIView *)carousel:(iCarousel *)carousel viewForItemAtIndex:(NSUInteger)index reusingView:(UIView *)view;
返回一个在carousel中要在指定索引处显示的视图,可以是UIImageView等,也可以自定义UIView。
- (NSUInteger)numberOfPlaceholdersInCarousel:(iCarousel *)carousel
返回在carousel中展示的占位视图数量。占位视图用来当carousel中界面太少而不能填满carousel的宽度,并且你希望在空白的地方显示一些东西时使用。它们随着carousel移动并且像其他carousel界面一样运行,但是它们不占numberOfItems数量,且不能被设置为当前选中的界面。
- (UIView *)carousel:(iCarousel *)carousel placeholderViewAtIndex:(NSUInteger)index reusingView:(UIView *)view;
返回在carousel中展示的占位视图。
iCarouselDelegate
//carousel将开始滚动动画
- (void)carouselWillBeginScrollingAnimation:(iCarousel *)carousel;
//carousel结束滚动动画
- (void)carouselDidEndScrollingAnimation:(iCarousel *)carousel;
//carousel滚动
- (void)carouselDidScroll:(iCarousel *)carousel;
//carousel变化
- (void)carouselCurrentItemIndexDidChange:(iCarousel *)carousel;
//开始拖动carousel
- (void)carouselWillBeginDragging:(iCarousel *)carousel;
//停止拖动carousel
- (void)carouselDidEndDragging:(iCarousel *)carousel willDecelerate:(BOOL)decelerate;
//carousel开始减速
- (void)carouselWillBeginDecelerating:(iCarousel *)carousel;
//carousel完成减速
- (void)carouselDidEndDecelerating:(iCarousel *)carousel; //将要点击carousel视图触发该方法
- (BOOL)carousel:(iCarousel *)carousel shouldSelectItemAtIndex:(NSInteger)index;
//点击carousel视图触发该方法,类似于tableView:didSelectRowAtIndexPath:方法
- (void)carousel:(iCarousel *)carousel didSelectItemAtIndex:(NSInteger)index; - (CGFloat)carouselItemWidth:(iCarousel *)carousel;
//自定义carousel动画
- (CATransform3D)carousel:(iCarousel *)carousel itemTransformForOffset:(CGFloat)offset baseTransform:(CATransform3D)transform;
- (CGFloat)carousel:(iCarousel *)carousel valueForOption:(iCarouselOption)option withDefault:(CGFloat)value;
iCarousel的自定义动画实现
创建iCarousel类的对象
- (iCarousel *)myCarousel {
CGFloat height = kScreen_Width - *PAGE_OFFSET;
if (!_myCarousel) {
_myCarousel = [[iCarousel alloc] initWithFrame:CGRectMake(, , kScreen_Width, height)];
_myCarousel.dataSource = self;
_myCarousel.delegate = self;
_myCarousel.bounces = NO;
_myCarousel.pagingEnabled = YES;
_myCarousel.type = iCarouselTypeCustom;
}
return _myCarousel;
}
- (NSMutableArray *)dataSource {
if (!_dataSource) {
_dataSource = [[NSMutableArray alloc] init];
[_dataSource addObject:[NSString stringWithFormat:@"style_%@.jpg",@""]];
[_dataSource addObject:[NSString stringWithFormat:@"style_%@.jpg",@""]];
[_dataSource addObject:[NSString stringWithFormat:@"style_%@.jpg",@""]];
[_dataSource addObject:[NSString stringWithFormat:@"style_%@.jpg",@""]];
[_dataSource addObject:[NSString stringWithFormat:@"style_%@.jpg",@""]];
[_dataSource addObject:[NSString stringWithFormat:@"style_%@.jpg",@""]];
[_dataSource addObject:[NSString stringWithFormat:@"style_%@.jpg",@""]];
[_dataSource addObject:[NSString stringWithFormat:@"style_%@.jpg",@""]];
}
return _dataSource;
}
#pragma mark - iCarouselDataSource - (NSUInteger)numberOfItemsInCarousel:(iCarousel *)carousel {
return self.dataSource.count;
} - (UIView *)carousel:(iCarousel *)carousel viewForItemAtIndex:(NSUInteger)index reusingView:(UIView *)view {
if (view == nil) {
CGFloat viewWidth = kScreen_Width - *PAGE_OFFSET;
view = [[UIImageView alloc] initWithFrame:CGRectMake(, , viewWidth, viewWidth)];
}
((UIImageView *)view).image = [UIImage imageNamed:[self.dataSource objectAtIndex:index]]; return view;
} #pragma mark - iCarouselDelegate - (CATransform3D)carousel:(iCarousel *)carousel itemTransformForOffset:(CGFloat)offset baseTransform:(CATransform3D)transform { static CGFloat max_sacle = 1.0f;
static CGFloat min_scale = 0.6f;
if (offset <= && offset >= -) {
float tempScale = offset < ? +offset : -offset;
float slope = (max_sacle - min_scale) / ; CGFloat scale = min_scale + slope*tempScale;
transform = CATransform3DScale(transform, scale, scale, );
}else{
transform = CATransform3DScale(transform, min_scale, min_scale, );
} return CATransform3DTranslate(transform, offset * self.myCarousel.itemWidth * 1.4, 0.0, 0.0);
} - (void)carousel:(iCarousel *)carousel didSelectItemAtIndex:(NSInteger)index {
[self showHudTipStr:[NSString stringWithFormat:@"点击了第%ld张图片",(long)index]];
}
iCarousel的简单介绍及应用的更多相关文章
- [原创]关于mybatis中一级缓存和二级缓存的简单介绍
关于mybatis中一级缓存和二级缓存的简单介绍 mybatis的一级缓存: MyBatis会在表示会话的SqlSession对象中建立一个简单的缓存,将每次查询到的结果结果缓存起来,当下次查询的时候 ...
- 利用Python进行数据分析(7) pandas基础: Series和DataFrame的简单介绍
一.pandas 是什么 pandas 是基于 NumPy 的一个 Python 数据分析包,主要目的是为了数据分析.它提供了大量高级的数据结构和对数据处理的方法. pandas 有两个主要的数据结构 ...
- 利用Python进行数据分析(4) NumPy基础: ndarray简单介绍
一.NumPy 是什么 NumPy 是 Python 科学计算的基础包,它专为进行严格的数字处理而产生.在之前的随笔里已有更加详细的介绍,这里不再赘述. 利用 Python 进行数据分析(一)简单介绍 ...
- yii2的权限管理系统RBAC简单介绍
这里有几个概念 权限: 指用户是否可以执行哪些操作,如:编辑.发布.查看回帖 角色 比如:VIP用户组, 高级会员组,中级会员组,初级会员组 VIP用户组:发帖.回帖.删帖.浏览权限 高级会员组:发帖 ...
- angular1.x的简单介绍(二)
首先还是要强调一下DI,DI(Denpendency Injection)伸手获得,主要解决模块间的耦合关系.那么模块是又什么组成的呢?在我看来,模块的最小单位是类,多个类的组合就是模块.关于在根模块 ...
- Linux的简单介绍和常用命令的介绍
Linux的简单介绍和常用命令的介绍 本说明以Ubuntu系统为例 Ubuntu系统的安装自行百度,或者参考http://www.cnblogs.com/CoderJYF/p/6091068.html ...
- iOS-iOS开发简单介绍
概览 终于到了真正接触IOS应用程序的时刻了,之前我们花了很多时间去讨论C语言.ObjC等知识,对于很多朋友而言开发IOS第一天就想直接看到成果,看到可以运行的IOS程序.但是这里我想强调一下,前面的 ...
- iOS开发多线程篇—多线程简单介绍
iOS开发多线程篇—多线程简单介绍 一.进程和线程 1.什么是进程 进程是指在系统中正在运行的一个应用程序 每个进程之间是独立的,每个进程均运行在其专用且受保护的内存空间内 比如同时打开QQ.Xcod ...
- iOS开发UI篇—UITabBarController简单介绍
iOS开发UI篇—UITabBarController简单介绍 一.简单介绍 UITabBarController和UINavigationController类似,UITabBarControlle ...
随机推荐
- 通过JAVA调用命令行程序
这是我在把数据导入到数据库时遇到问题,总结下来的.包含两个方法,一个方法是读取文件路径下的文件列表,主方法是执行cmd命令,在导入时想得到导入一个文件的时间,涉及到线程阻塞问题,这个问题理解不是很深, ...
- javascript 返回上一页面
<a href="<a href="javascript :history.back(-1)">返回上一页</a>或<a href=& ...
- align="absmiddle" 图片的中间上下对齐
align=absmiddle表示图像的中间与同一行中最大元素的中间对齐 AbsBottom 图像的下边缘与同一行中最大元素的下边缘对齐.AbsMiddle 图像的中间与同一行中最大元素的中间对齐.B ...
- 02 http协议之方法与状态码
一:HTTP请求信息和响应信息的格式 请求: ()请求行 ()请求头信息 ()请求主体信息(可以没有) () 头信息结束后和主体信息之间要空一行 请求行又分3部分 请求方法 请求路径 所用的协议 请求 ...
- poj 1730Perfect Pth Powers(分解质因数)
id=1730">Perfect Pth Powers Time Li ...
- JQGrid总记录数和查询消耗时间不显示
其他做的几个页面都显示,只有一个不显示....百度发现, viewrecords选项未配置,应该设置为ture才可以.
- EasyDarwin流媒体服务器RTSP拉模式流媒体转发模块设计
拉模式转发 拉模式转发,顾名思义就是服务器主动从源端(IPCamera.NVR.或者其他流媒体服务器)通过RTSP/RTP协议将流媒体音视频数据拉取到流媒体转发服务器,再通过内部分发调度机制,分发给请 ...
- java CyclicBarrier和wait/notifyAll
1 CyclicBarrier 多个进程做自己的事情,然后先做完的就等待在CyclicBarrier上,然后最后一个做完的线程到来时会冲破CyclicBarrier,然后执行CyclicBarrier ...
- J++ C#
J++几乎有与Java相同的编程语言和虚拟机.
- 使用酷Q SDK开发QQ机器人
酷Q SDK下载地址:https://github.com/CoolQ/cqsdk-vc 打开工程,编辑appmain.cpp 将“私聊消息”处的代码 更改为 CQEVENT(int32_t, __e ...