在我的项目中,我UIActionSheet
用于显示某些排序类型。我想更改操作表按钮中显示的文本的颜色。我们如何更改文本颜色?
11 回答
iOS 8: UIActionSheet
已弃用。UIAlertController
尊重-[UIView tintColor]
,所以这有效:
alertController.view.tintColor = [UIColor redColor];
更好的是,在您的应用程序委托中设置整个窗口的色调:
self.window.tintColor = [UIColor redColor];
iOS 7:在您的操作表委托中,实现-willPresentActionSheet:
如下:
- (void)willPresentActionSheet:(UIActionSheet *)actionSheet
{
for (UIView *subview in actionSheet.subviews) {
if ([subview isKindOfClass:[UIButton class]]) {
UIButton *button = (UIButton *)subview;
[button setTitleColor:[UIColor redColor] forState:UIControlStateNormal];
}
}
}
在 iOS 8 中,这些都不再适用了。UIActionSheet 文本似乎从 window.tintColor 获取颜色。
这在 iOS8 中对我有用
[[UIView appearanceWhenContainedIn:[UIAlertController class], nil] setTintColor:[UIColor redColor]];
如果您想浏览UIActionSheet
的子视图,则不应直接设置 的文本颜色,UILabel
而应使用该UIButton
setTitleColor:forState
方法。否则,初始颜色将在诸如 UIControlEventTouchDragOutside 之类的事件时重新设置。
这是正确的方法,重用jrc的代码:
- (void)willPresentActionSheet:(UIActionSheet *)actionSheet
{
for (UIView *subview in actionSheet.subviews) {
if ([subview isKindOfClass:[UIButton class]]) {
UIButton *button = (UIButton *)subview;
[button setTitleColor:[UIColor redColor] forState:UIControlStateNormal];
}
}
}
可能是一个迟到的答案,但我认为它可以帮助某人。
iOS 8: 您可以简单地使用样式初始化您的 UIAlertAction:UIAlertActionStyleDestructive,如下所示:
UIAlertAction *delete = [UIAlertAction actionWithTitle:@"Delete" style:UIAlertActionStyleDestructive handler:^(UIAlertAction *action){
// your code in here
}];
这将使按钮的文本默认为红色。
要在警报操作中更改特定按钮的颜色,请使用此
let cancelAction = UIAlertAction(title: "Success", style: .cancel, handler: nil)
cancelAction.setValue(UIColor.green, forKey: "titleTextColor")
@jrc 解决方案有效,但是当您点击按钮时,titleLabel 颜色会发生变化。试试这个以在所有状态下保持相同的颜色。
- (void)willPresentActionSheet:(UIActionSheet *)actionSheet
{
UIColor *customTitleColor = [UIColor greenColor];
for (UIView *subview in actionSheet.subviews) {
if ([subview isKindOfClass:[UIButton class]]) {
UIButton *button = (UIButton *)subview;
[button setTitleColor:customTitleColor forState:UIControlStateHighlighted];
[button setTitleColor:customTitleColor forState:UIControlStateNormal];
[button setTitleColor:customTitleColor forState:UIControlStateSelected];
}
}
}
Swift 3的解决方案。更改所有颜色。
UIView.appearance(whenContainedInInstancesOf: [UIAlertController.self]).tintColor = .yellow
编辑
这是一个类似的问题:如何在 UIActionSheet 中自定义按钮?
尝试使用appearance
协议 [不工作]
UIButton *btn = [UIButton appearanceWhenContainedIn:[UIActionSheet class], nil];
[btn setTitleColor:[UIColor redColor] forState:UIControlStateNormal];
将此用于 ios 8 及更高版本
SEL selector = NSSelectorFromString(@"_alertController");
if ([actionSheet respondsToSelector:selector])
{
UIAlertController *alertController = [actionSheet valueForKey:@"_alertController"];
if ([alertController isKindOfClass:[UIAlertController class]])
{
alertController.view.tintColor = [UIColor blueColor];
}
}
else
{
// use other methods for iOS 7 or older.
}
UIAppearance 可以处理这个:
[[UIButton appearanceWhenContainedIn:[UIActionSheet class], nil] setTitleColor:[UIColor cyanColor] forState:UIControlStateNormal];
比浏览子视图要容易得多,但我还没有在 iOS 6 或更早版本上测试过这个解决方案。