我正在尝试使用标签创建一系列标签,然后更新文本。但是,只有最后一个标签会被更新。如何更新所有标签或特定标签的标签?

此示例应制作4个标签,其中包含数字1,2,3,4。然后应该用A,B,C,D覆盖它们。仅第四个标签被覆盖。

有什么想法吗?

int x = 10, y=10, w = 80, h = 30;
for(int i=1; i<= 4  ; i++)
{
    CGRect frame = CGRectMake(x, y, w, h ) ;
    myLab = [[UILabel alloc] initWithFrame:frame];
    [myLab setTag:i] ;
    [myLab setBackgroundColor:[UIColor whiteColor]] ;
    [myLab setText:[NSString stringWithFormat:@"%d",i]];
    [self.view addSubview:myLab];
    x += 158;
}


for (int i = 1; i <=4; i++){
    UILabel *textField = (UILabel*)[myLab viewWithTag:i];
    [textField setText:[NSString stringWithFormat:@"%c",i+64]];
}

最佳答案

查看UIView的类参考以获取有关viewWithTag方法的更多解释:http://developer.apple.com/library/ios/#documentation/UIKit/Reference/UIView_Class/UIView/UIView.html

在那里提到,此viewWithTag方法在当前视图及其所有子视图中搜索指定的视图。在您当前的实现中,指定的视图是myLab(分配给for循环后的最后一个(第4个)UILabel),而不是包含所有标签的self.view。

将标签的外观更改为[self.view viewWithTag:i],以在self.view下搜索带有特定标签的标签,因为您将所有这些标签都添加到了self.view子视图中。

for (int i = 1; i <=4; i++){
    UILabel *textField = (UILabel*)[self.view viewWithTag:i];
    [textField setText:[NSString stringWithFormat:@"%c",i+64]];
}

关于ios - viewWithTag仅更新集合中的最后一个标记,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/16619731/

10-12 04:15