UIButton *btn = [UIButton buttonWithType:UIButtonTypeRoundedRect];
btn.frame = CGRectMake(x, y+30, 60, 70);
[btn setTitle:@"ボタン" forState:UIControlStateNormal];
[self.view addSubview:btn];
// ボタンイベント時の呼び出しメソッド設定
[btn addTarget:self action:@selector(btnClick:)forControlEvents:UIControlEventTouchDown];
-(void)btnClick:(id)sender{
// 処理
NSLog(@"aaa");
}
0 件のコメント:
コメントを投稿