iOS tag的使用
Posted 低头捡到蛋
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了iOS tag的使用相关的知识,希望对你有一定的参考价值。
一、添加标记 (标记不能为0)
UIButton *backBtn = [[UIButton alloc] initWithFrame:CGRectMake(0,0,100,100)]; backBtn.backgroundColor = [UIColor blackColor]; backBtn.tag = 666;
[self.view addSubview:backBtn];
二、取出控件
// 方法一 for (UIButton *find_Btn in self.view.subviews) { if (find_Btn.tag == 666){ find_Btn.backgroundColor = [UIColor whiteColor]; } if (find_Btn.tag == 999){ find_Btn.backgroundColor = [UIColor greenColor]; } } // 方法二
UIButton *find_Btn = (UIButton*)[self.view viewWithTag:666];
find_Btn.backgroundColor = [UIColor redColor];
以上是关于iOS tag的使用的主要内容,如果未能解决你的问题,请参考以下文章