为什么使用viewWithTag来访问Subview

在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;

    }

posted @ 2012-12-29 13:31  Jake Lin  阅读(2974)  评论(2编辑  收藏  举报