ボタンをサブクラス化しないでください IB ですべてを行います。これがあなたが望むものを達成する方法です:
ボタンを選択-> Attributes Inspector -> Type -> Rounded Rectを選択します。これにより、デフォルトのボタンの外観が得られます。
次に、次のようにフォントを選択します ( T文字を押します)。
また、フォントの背後にあるテキストの色を選択します。
結果:
編集:
プログラムでボタンを作成します。
//create the button with RoundedRect type
UIButton *button = [UIButton buttonWithType:UIButtonTypeRoundedRect];
//set the position of the button
button.frame = CGRectMake(100, 150, 100, 30);
//set the button's title
[button setTitle:@"Click Me!" forState:UIControlStateNormal];
//set the button's font
button.titleLabel.font = [UIFont fontWithName:@"Chalkduster" size:16];
//set the button's line break mode
button.titleLabel.lineBreakMode = UILineBreakModeWordWrap;
//set the button's text color
[button setTitleColor:[UIColor greenColor] forState:UIControlStateNormal];
//button.titleLabel.textColor = [UIColor greenColor]; // don't use this because button's text color after clicking it will be blue (default).
//add the button to the view
[self.view addSubview:button];
結果:
注:textColor
ボタンをクリックした後のテキストの色はデフォルトの青色になるため、使用しないでください。