假设我已经在 IB 中设置了几个 UILabel,并在代码中连接到 IBOulet(label1、label2、label3、label4)
我将如何在代码中创建这些变量名称,以便我可以在循环中更改每个变量的文本,其中标签取自 NSArray。
这是伪代码:
labelArray = [NSArray arrayWithObjects:@"this", @"array", @"has", @"a", @"random", @"amount", @"of", @"items", nil];
for (int i = 0; i < [labelArray count]; i++)
{
// labelx is the constructed name of the IBOutlet
lablex.text = [labelArray objectAtIndex:i];
}
如何在上面构建“labelx”?这可以使用 Blocks 来完成吗?