博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
ios中PagedFlowView的用法
阅读量:6692 次
发布时间:2019-06-25

本文共 1370 字,大约阅读时间需要 4 分钟。

下载地址 

引入PagedFlowView.h  PagedFlowView.m文件

#import 
#import "PagedFlowView.h"@interface MyViewController : UIViewController
@end#import "MyViewController.h"@interface MyViewController (){ PagedFlowView *flowView1;}@property(nonatomic,retain)NSArray *imageArray;@end@implementation MyViewController- (void)viewDidLoad{ [super viewDidLoad]; flowView1 =[[[PagedFlowView alloc] initWithFrame:CGRectMake(0, 0, 200, 200)] autorelease]; flowView1.delegate=self; flowView1.dataSource=self; flowView1.minimumPageAlpha=0.3; flowView1.minimumPageScale=0.9; // flowView1.orientation self.imageArray = @[@"0.tiff",@"1.tiff",@"2.tiff",@"3.tiff",@"4.tiff",@"5.tiff",@"6.tiff",@"7.tiff"]; [self.view addSubview:flowView1]; // Do any additional setup after loading the view.}#pragma mark pagedFlowView data source-(NSInteger)numberOfPagesInFlowView:(PagedFlowView *)flowView{ return self.imageArray.count;}-(UIView *)flowView:(PagedFlowView *)flowView cellForPageAtIndex:(NSInteger)index{ UIImageView *imageview=(UIImageView *)[flowView dequeueReusableCell]; if(!imageview){ imageview=[[[UIImageView alloc] init] autorelease]; } NSString *imageurl=self.imageArray[index];imageview.image=[UIImage imageNamed:imageurl];return imageview;}@end

 

转载于:https://www.cnblogs.com/gcb999/p/3227371.html

你可能感兴趣的文章
项目积累demo-01
查看>>
JAVA面向对象编程深入理解图
查看>>
jsp与jsp之间传参数如何获取
查看>>
如何做好一名售前工程师 [理论]
查看>>
什么是语法糖?
查看>>
rabbitMQ的安装和创建用户
查看>>
Struts2笔记——第一个实例HelloWorld
查看>>
Maven安装
查看>>
2.1列表相关知识点
查看>>
OpenStack images
查看>>
xsigo systems
查看>>
ofbiz ins
查看>>
iOS动画实现改变frme和contenOffset
查看>>
DroidPilot使用第一步 - 安装
查看>>
0059-乘积问题
查看>>
2019年的第一篇随笔
查看>>
关于公网ip的一些信息(摘抄)
查看>>
5分钟弄懂Docker!
查看>>
BZOJ1076:[SCOI2008]奖励关(状压DP,期望)
查看>>
BZOJ2223/3524:[POI2014] Couriers(主席树)
查看>>