标签:
今天刘国斌老师给我们出了七道题,作为阶段性的测试题,我还是蛮喜欢这样的经常来一点考试对我的学习很有帮助。
0、在 Table view 列表中显示:第1题、第2题、第3题…… 题目列表 点击某一题跳转到解答这道题的页面
1、Progress view 和 Slider 实现拖动 Slider,Progress view 的进度跟着移动
2、每隔一秒钟在界面位置随机出现图片按钮,界面添加一个 Label 显示已经出现的按钮数量,并且每添加一个按钮,Label 所显示数量自动增加,点击某一个按钮时,该按钮消失,并且 Label 显示的数量减少(
3、页面中添加一个 Text field,每次开始编辑的时候自动把里面的内容清空,并且制输入框不能输入字母 a 和 b
4、Segmented control 显示:刘德华、张学友、郭富城、赵四儿 这四个人名,在界面中有个 Label,要求点击谁,就让 Label 显示谁的名字
5、使用 Collection view 在界面中显示 20 张图片,每行显示四张图片,每个图片上下左右间距相等, 图片内容随意
6、Scroll view 和 Page control 配合使用,展示 5 张图片,图片自己自动滚动显示,每隔 2 秒钟换一张图片,Page control 也要跟着变
7、解析 comments.txt 文件内的数据(里面是微博评论的数据),有很多条评论数据。获取里面的数据展示到界面中,要求显示用户头像、用户名称、评论内容三条数据即可
下面配上自己没做出来的错题:
- (void)viewDidLoad {
[super viewDidLoad];
self.view.backgroundColor=[UIColor yellowColor]
self.sc=[[UIScrollView alloc]initWithFrame:CGRectMake(55, 55, 200, 200)];
self.sc.pagingEnabled=YES;
for (int i=0; i<5; i++) {
UIImageView *ib=[[UIImageView alloc]initWithFrame:CGRectMake(200*i, 0, 200, 200)];
ib.image=[UIImage imageNamed:[NSString stringWithFormat:@"%d.jpg",i]];
[self.sc addSubview:ib]:
}
self.sc.contentSize=CGSizeMake(1000, 0);
self.sc.delegate=self;
[self.view addSubview:self.sc];
self.pg=[[UIPageControl alloc]initWithFrame:CGRectMake(33, 333, 300, 55)];
self.pg.numberOfPages=5;
self.pg.backgroundColor=[UIColor redColor];
[self.view addSubview:self.pg];
[NSTimer scheduledTimerWithTimeInterval:2 target:self selector:@selector(moo) userInfo:nilrepeats:YES]:
}
-(void)moo{
self.pg.currentPage=(self.pg.currentPage+1)%4;
[self.sc setContentOffset:CGPointMake(self.pg.currentPage*200, 0) animated:YES];
}
标签:
原文地址:http://www.cnblogs.com/lanyisanqqi/p/5134601.html