我在哪里放置代码以允许在UILabel上添加更多行?

时间:2014-10-14 09:38:08

标签: ios objective-c xcode xcode5.1

我想在我的UILabel上添加第二行,但我不知道在哪里放置代码而且没有它就被卡住了。     #import

@interface ViewController : UIViewController{

IBOutlet UITextField *TramNumber;
IBOutlet UILabel *Tramresult;



}
- (IBAction)Button:(id)sender;
- (IBAction)DismissKeyboard;



@end

这是我的ViewController.h中的代码,Tramresult是我的UILabel。

1 个答案:

答案 0 :(得分:2)

您可以在“界面”构建器(可能最适合您)或任何代码位置执行此操作。在这种情况下,最好的地方是ViewDidLoad:

- (void)viewDidLoad {

    [super viewDidLoad];
    // Do any additional setup after loading the view.

    [Tramresult setNumberOfLines:0];  
}