在我的 iPad 应用程序中,我有一个 UIButton,当按下它时会启动一些需要时间的数据传输。在此期间,按钮变为蓝色,如下所示:
有没有办法改变这个颜色?
在我的 iPad 应用程序中,我有一个 UIButton,当按下它时会启动一些需要时间的数据传输。在此期间,按钮变为蓝色,如下所示:
有没有办法改变这个颜色?
更改色调颜色,将在按钮突出显示时使用。
[myButton setTintColor:[UIColor blackColor]];
尝试这个
UIButton *button = [[UIButton alloc] initWithFrame:CGRectMake(10, 50, 100, 50)];
[button setTitle:@"hi" forState:UIControlStateNormal];
[button setBackgroundColor:[UIColor blackColor]];
[self.view addSubview:button];
[UIView beginAnimations:nil context:nil];
[UIView setAnimationDuration:5.0];
button.backgroundColor = [UIColor whiteColor];
[UIView commitAnimations];