UILabel的问题

时间:2012-01-05 10:33:16

标签: objective-c uilabel xcode4.2

我真的不知道为什么这不起作用,有人可以解释我做错了什么以及如何解决它?

-(IBAction)working {
    workLength.text = @"Area =" Length.text @"x" Width.text;
}

提前致谢。

1 个答案:

答案 0 :(得分:3)

你需要告诉Objective C如何格式化你想在UILabel中设置的字符串。

做这样的事情:

-(IBAction)working
{
    workLength.text = [NSString stringWithFormat: @"Area = %@x%@", Length.text, Width.text];
}