IOS9任务管理器特效的实现

时间:2023-03-08 15:56:56
IOS9任务管理器特效的实现

IOS9任务管理器特效的实现

IOS9中通过双击home键可以打开任务管理器,和以前版本不一样的地方时这这次使用的3D的特效,见下图:

IOS9任务管理器特效的实现

那么如何在我们的APP中也制作出这样的特效呢?在GItHub上有一个iCarousel第三方框架供我们使用。以下是我在这个库的基础上学习任务管理器特效的过程。

一、简单实现功能:

1、先下载iCarousel的框架,下载好之后随便保存在什么地方都行,只要你能找到就OK。

2、新建一个IOS项目,然后在项目文件中点击添加一个Group,命名为iCarousel,然后右键添加文件,找到1中下载的iCarousel的文件中的iCarousel.h和iCarousel.m这两个文件,并导入。

3、在新建项目中原有的ViewController.m中使用#import导入iCarousel.h。然后在- (void)viewDidLoad {}函数中增加如下语句:

 //新建1个iCarousel对象并初始化
iCarousel *icar = [[iCarousel alloc]initWithFrame:CGRectMake(, , , )];
//设置iCarousel的类型为时间机器型
icar.type = iCarouselTypeTimeMachine;
//设置数据源和代理
icar.delegate = self;
icar.dataSource = self; //把创建好的iCarousel对象添加到当前View
[self.view addSubview:icar];

以上就完成了iCarousel对象的创建及初始化、添加到当前View等工作。接下来看iCarousel的数据源和代理方法,在Xcode中按住Command然后点击上面代码中的iCarousel,会跳转到iCarousel.h文件中,代码如下:

 @protocol iCarouselDataSource, iCarouselDelegate;

 @interface iCarousel : UIView

 @property (nonatomic, weak_delegate) IBOutlet __nullable id<iCarouselDataSource> dataSource;
@property (nonatomic, weak_delegate) IBOutlet __nullable id<iCarouselDelegate> delegate;

可以看到iCarousel的代理是iCarouselDataSource和iCarouselDelegate,同样安住Command然后点击iCarouselDataSource,跳转到如下代码:

 @protocol iCarouselDataSource <NSObject>

 - (NSInteger)numberOfItemsInCarousel:(iCarousel *)carousel;
- (UIView *)carousel:(iCarousel *)carousel viewForItemAtIndex:(NSInteger)index reusingView:(nullable UIView *)view; @optional - (NSInteger)numberOfPlaceholdersInCarousel:(iCarousel *)carousel;
- (UIView *)carousel:(iCarousel *)carousel placeholderViewAtIndex:(NSInteger)index reusingView:(nullable UIView *)view; @end

可见这个协议中有四个方法需要实现,其中前两个是必须要实现的,后两个是可以选择实现,接下来我们仔细看看发现,第一个方法根据字面意思看是反悔iCarousel中元素的个数,第二个方法则是返回一个UIView,参数中有Index什么的,这时候如果以前用过UITableView就会想到,iCarousel和UITableView有点像,接下来我们把这两个方法复制到我们的程序中,并实现它:

 - (NSInteger)numberOfItemsInCarousel:(iCarousel *)carousel{
// 返回Item的个数
return ;
}
- (UIView *)carousel:(iCarousel *)carousel viewForItemAtIndex:(NSInteger)index reusingView:(nullable UIView *)view{
// 初始化view并在上面添加元素
if (view==nil) {
view = [[UIView alloc]initWithFrame:CGRectMake(, , , )];
view.backgroundColor = [UIColor redColor];
view.contentMode = UIViewContentModeCenter;
UILabel *label = [[UILabel alloc] initWithFrame:view.bounds];
label.text = @"这是iCarousel练习";
label.textAlignment = NSTextAlignmentCenter;
[view addSubview:label];
}
return view;
}

完成了以上代码,我们就可以尝试运行看看有没有效果了:

虽然看起来不好看,但是通过这一步最基本的功能已经实现了,以后再研究如何让它更美观。