与えられた画像の形でUIButtonを作成するにはどうすればよいですか。
それに近いものを作成することはできますが、画像がボタンに収まらないようです。私の要件は以下の画像です。ie;semicircle
ボタンの作成に使用したコードを以下に示します。
このボタンを取得するには、次の画像にどのような変更を加える必要がありますか。ps-別のクラスで行われたサブビューを追加します。
btnStartGame =[UIButton buttonWithType:UIButtonTypeCustom];
[btnStartGame setFrame:CGRectMake(60, 200, 200, 200)];
btnStartGame.titleLabel.font=[UIFont fontWithName:@"Helvetica-Bold" size:30];
[btnStartGame setImage:
[UIImage imageNamed:@"Draw button.png"] forState:UIControlStateNormal];
btnStartGame.titleLabel.textColor=[UIColor redColor];
btnStartGame.clipsToBounds = YES;
btnStartGame.layer.cornerRadius = 50;//half of the width
btnStartGame.layer.borderColor=[UIColor redColor].CGColor;
btnStartGame.layer.borderWidth=2.0f;
btnStartGame.tag=20;
btnStartGame.highlighted=NO;