我現在正在開發ios 6的應用程序。這是一種表單設計應用程序,我發現如果我們在應用程序中更改titlelabel.textColor
某個點,那麼如果我們更改字體,textColor將在分配時更改爲默認值。 我檢查這個像下面設置UIButton的titleLabel字體會將textColor更改爲默認值?
我拖累樣本按鈕,我的樣本視圖 - 控制和創造-viewDidLoad
[myButton.titleLabel setTextColor:[UIColor redColor]];
,並在按鈕的動作我不喜歡在下面viewcontroller.h文件 名爲myButton
一個IBOutlet屬性下面
- (IBAction)btnLoginClicke:(UIButton *)sender {
[myButton.titleLabel setFont:[UIFont fontWithName:@"Arial" size:18]];
是我之前和之後的按鈕點擊動作截圖