5
Como posso alterar a cor do título UIButton?
Eu crio um botão programaticamente .......... 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]; como posso mudar a cor do título?
189
ios
objective-c
iphone
uibutton