我想在iPod Touch应用程序的同一视图上使用两个标签。我创建了两个标签,但我只知道如何访问它们。有没有人举例说明如何做到这一点?
答案 0 :(得分:0)
UILabel *label1 = [[UILabel alloc] initwithFrame: CGRectMake(0,0,100,100)];
UILabel *label2 = [[UILabel alloc] initwithFrame: CGRectMake(0,0,200,200)];
label1.text = @"Label One";
label2.text = @"Label Two";
或者,如果您在“界面”构建器中创建了标签,请确保为这两个标签创建了IBOutlet
,以便从代码中访问它们。