在UITableViewCell里面,我们可以通过viewWithTag方法来访问Subview,这是一种快速但是比较邋遢的方式。这种方法的好处是可以快速的访问一堆连号的控件(subview),而不需要一个个的通过Ctrl drag来设置IBOutlet。下面是根据NSMutableArray设置UI的代码,好用。
int i = 0;
for(id number in draw.primaryNumbers){
UILabel *n = (UILabel *)[cell viewWithTag:300+i];
// NSLog(@"%@", n);
n.text = number;
NSString* imageFile = [NSString stringWithFormat:@"Images/ball.png"];
UIImageView * imageBall = (UIImageView *)[cell viewWithTag:200 + i];
imageBall.image = [UIImage imageNamed:imageFile];
++i;
}
本文转自Jake Lin博客园博客,原文链接:http://www.cnblogs.com/procoder/archive/2012/12/29/Why-use-viewWithTag.html,如需转载请自行联系原作者