如何为iPod Touch创建多个标签

时间:2009-11-18 18:17:02

标签: iphone cocoa-touch controls uilabel ipod-touch

我想在iPod Touch应用程序的同一视图上使用两个标签。我创建了两个标签,但我只知道如何访问它们。有没有人举例说明如何做到这一点?

1 个答案:

答案 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,以便从代码中访问它们。