ios – 更改UIAlertview和UIActionsheet按钮的色调颜色

前端之家收集整理的这篇文章主要介绍了ios – 更改UIAlertview和UIActionsheet按钮的色调颜色前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在尝试为iOS 7调整我的应用程序.我遇到的问题是我无法更改某些控件的色调颜色.

添加

self.window = [[[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]] autorelease];
if (IOS7_OR_LATER)
    self.window.tintColor = [self greenTintColor];

到我的应用代表的

- (BOOL)application:(UIApplication *)application
 didFinishLaunchingWithOptions:(NSDictionary *)launchOptions

它主要有所帮助,但消息框和操作表按钮的颜色仍然是默认的蓝色.

我怎样才能重新着色所有这些按钮呢?

一些截图:

解决方法

由于UIAlertView已弃用,您可以.使用UIAlertController.

您可以使用tintColor属性.

The UIAlertView class is intended to be used as-is and does not@H_502_26@ support subclassing. The view hierarchy for this class is private and@H_502_26@ must not be modified.

– 来自Apple Doc

您可以使用tintColor属性或您可以使用某些自定义库,您可以在cocoacontrols.com上找到它.

原文链接:https://www.f2er.com/iOS/335508.html

猜你在找的iOS相关文章