not good but great

プログラミング、アート、映画・本の感想について書きます。

setTitleを使ってUIButtonの文字を変更する

ボタンのタイトルを変更する

@interface ViewController ()
@property (weak, nonatomic) IBOutlet UIButton *bottomBtn;
@end

Outletでボタンの変数を宣言します。

[_bottomBtn setTitle:@"hogehoge" forState:UIControlStateNormal];

「アンダーバー」を変数名の前に付けて、setTitleすればボタンの名前を変更することが出来ます。

・参考
http://www.tamurasouko.com/?p=798