5
Làm cách nào để thay đổi màu tiêu đề UIButton?
Tôi tạo một nút lập trình .......... button = [UIButton buttonWithType:UIButtonTypeRoundedRect]; [button addTarget:self action:@selector(aMethod:) forControlEvents:UIControlEventTouchDown]; [button setTitle:@"Show View" forState:UIControlStateNormal]; button.frame = CGRectMake(80.0, 210.0, 160.0, 40.0); [view addSubview:button]; Làm thế nào tôi có thể thay đổi màu tiêu đề?
189
ios
objective-c
iphone
uibutton