UIButtonの文字の設定
UIButtonの文字の設定
ボタンの設定
UIButton をコード上で使用することで、ボタンを追加することができます。 追加する時に、各状態になった場合のボタンのタイトル、色などを指定することができます。
//ボタンの宣言
UIButton *button = [[UIButton alloc]init];
//タイトル・テキスト色・画像 通常
[button setTitle:@"ボタン" forState:UIControlStateNormal];
[button setTitleColor:[UIColor blackColor] forState:UIControlStateNormal];
[button setImage:[UIImage imageNamed:@"image"] forState:UIControlStateNormal];
//タイトル・テキスト色・画像 押下中
[button setTitle:@"押下中" forState:UIControlStateHighlighted];
[button setTitleColor:[UIColor blackColor] forState:UIControlStateHighlighted];
[button setImage:[UIImage imageNamed:@"image"] forState:UIControlStateHighlighted];
//タイトル・テキスト色・画像 選択中
[button setTitle:@"選択中" forState:UIControlStateSelected];
[button setTitleColor:[UIColor blackColor] forState:UIControlStateSelected];
[button setImage:[UIImage imageNamed:@"image"] forState:UIControlStateSelected];
//タイトル・テキスト色・画像 無効中
[button setTitle:@"無効" forState:UIControlStateDisabled];
[button setTitleColor:[UIColor blackColor] forState:UIControlStateDisabled];
[button setImage:[UIImage imageNamed:@"image"] forState:UIControlStateDisabled];
//フォントサイズ
[button.titleLabel setFont:[UIFont systemFontOfSize:30]];
//背景色
[button setBackgroundColor:[UIColor redColor]];
//画面に追加
[self.view addSubview:button];
枠線の設定
枠線の色は setBorderColor 、枠線の太さは setBorderWidth 、角丸の丸みは setCornerRadius 、 で指定するができます。
…