2

在我所有的应用程序中,我都有 UIButton 和 UIButtonTypeSystem。对于 ios7,我想以编程方式设置按钮外观。对于正常状态,我需要带有蓝色边框颜色的白色背景 正常状态按钮

对于突出显示的状态,我需要带有蓝色边框颜色的灰色背景 高亮状态按钮

(对于禁用状态,我需要带有灰色边框的白色背景)

我为每个状态创建了图像(包含背景和边框颜色),并使用 UIButton 的方法 setBackgroungImage:forState: 设置它们。但是当按钮处于突出显示状态时,我得到了这个按钮样式 实际高亮状态按钮

我发现克服这种行为的唯一方法是将所有应用程序按钮类型从 UIButtonTypeSystem 更改为 UIButtonTypeCustom。意味着传递所有应用程序xib的

是否有另一种方法可以在不更改所有应用程序按钮类型的情况下这样做

谢谢投资回报率

4

1 回答 1

1

您好,您可以像这样以编程方式设置您的按钮:

UIButton *button = [UIButton buttonWithType:UIButtonTypeRoundedRect];
[button addTarget:self action:@selector(aMethod:)
forControlEvents:UIControlEventTouchUpInside];
[button setTitle:@"Show View" forState:UIControlStateNormal];
button.frame = CGRectMake(80.0, 210.0, 160.0, 40.0);
[buuton setBackgroundColor:[UIColor colorWithRed:(255/255.0) green:(180/255.0) blue:(200/255.0) alpha:1]];
[view addSubview:button];
于 2014-10-09T15:58:22.953 回答