not good but great

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

2014-04-21から1日間の記事一覧

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

ボタンのタイトルを変更する @interface ViewController () @property (weak, nonatomic) IBOutlet UIButton *bottomBtn; @end Outletでボタンの変数を宣言します。 [_bottomBtn setTitle:@"hogehoge" forState:UIControlStateNormal]; 「アンダーバー」を変…