[UIControl] UIButton
// 생성
//
[btn setTitle:@"버튼" forState:UIControlStateNormal]; //유효
UIButton *btn = [UIButton buttonWithType:UIButtonTypeRoudedRect];
btn.frame = CGRectMake(0, 0, 50, 30);
[btn setTitle:@"버튼" forState:UIControlStateNormal]; //유효
[btn setTitle:@"하이라이트!" forState:UIControlStateHighlighted]; //하이라이트시
[btn setTitle:@"무효!" forState:UIControlStateDisabled]; //무효시
-(void)hoge:(UIButton*)button{
답글삭제// ...
}
[btn.titleLabel setFont:[UIFont systemFontOfSize:24]];
답글삭제