2015-02-07 57 views
0

我想以編程方式製作標籤,並且出於某種原因它沒有出現。我已經宣佈它.h文件,這就是我對.M:沒有出現在框架中的Xcode標籤

TitleLabel.textColor = [UIColor whiteColor]; 
TitleLabel.frame =CGRectMake(65, 30, 200, 50); 
TitleLabel.textAlignment = NSTextAlignmentCenter; 
TitleLabel.alpha = 1; 
TitleLabel.font = [UIFont fontWithName:@"BrandonGrotesque-Black" size:23]; 
TitleLabel.backgroundColor = [UIColor blackColor]; 
TitleLabel.text = @"TEST"; 

誰能幫我解決這個小問題。謝謝

+0

你有鑑於加入的標籤? – Shashi3456643 2015-02-07 23:50:28

回答

0

你錯過了初始化,這樣做:
UILabel * label = [[UILabel alloc] initWithFrame:CGRectMake(x,y,width,height)];

0

所有你需要創建一個分配/初始化方法標籤ojbect首先:

titleLabel = [[UILabel alloc] init]; 

titleLabel = [[UILabel alloc] initWithFrame:CGRectMake(65, 30, 200, 50)]; 

,並在結束時,你需要添加它的觀點:

[self.view addSubview:titleLabel]; 

此外,只是一點建議 - 使用CamelCase編碼風格: http://en.wikipedia.org/wiki/CamelCase 這是類的名稱實例的最佳實踐從較低的情況下,像titleLabel,不TitleLabel