码迷,mamicode.com
首页 > 移动开发 > 详细

IOS 根据数组的个数对UIButton进行重复或循环使用

时间:2014-08-01 12:51:11      阅读:254      评论:0      收藏:0      [点我收藏+]

标签:color   使用   os   io   for   cti   ar   type   

//设置一个view 

view = [[UIView alloc] initWithFrame:CGRectMake(0, 38, 320, 30)]; 

view.backgroundColor = [UIColor lightGrayColor]; 

[self.view addSubview:view]; 

 

for (int i=0; i<5; i++) { 

UIButton *button = [UIButton buttonWithType:UIButtonTypeCustom]; 

button.tag = 100+i; 

button.frame = CGRectMake(64*i+3, 3, 58, 25); 

[button addTarget:self action:@selector(doButton:) forControlEvents:UIControlEventTouchUpInside]; 

[button setTitle:[NSString stringWithFormat:@"%@",[array objectAtIndex:i]] forState:UIControlStateNormal]; 

//默认在第一个 

if (button.tag == 100) { 

[button setBackgroundImage:[UIImage imageNamed:@"blueBtn.png"] forState:UIControlStateNormal]; 

//将循环创建的button都添加到view上面 

[view addSubview:button]; 

#pragma mark - button触发的方法 

-(void)doButton:(UIButton *)sender 

for (UIButton *button in view.subviews) { 

if (button.tag != sender.tag) { 

[button setBackgroundImage:nil forState:UIControlStateNormal]; 

else 

[button setBackgroundImage:[UIImage imageNamed:@"blueBtn.png"] forState:UIControlStateNormal]; 

}

IOS 根据数组的个数对UIButton进行重复或循环使用,布布扣,bubuko.com

IOS 根据数组的个数对UIButton进行重复或循环使用

标签:color   使用   os   io   for   cti   ar   type   

原文地址:http://www.cnblogs.com/Ewenblog/p/3884336.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!