在swift中更改默认的全局色调颜色

前端之家收集整理的这篇文章主要介绍了在swift中更改默认的全局色调颜色前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在开发一个小应用程序,我想将默认的全局色调颜色从蓝色更改为橙​​色.我已经在Objective-C中看到了很多方法,但我似乎无法使用 swift来实现它.我怎么能实现这个目标?提前致谢!
这可不容易吗?
@UIApplicationMain class AppDelegate: UIResponder,UIApplicationDelegate {

    var window: UIWindow?

    func application(application: UIApplication!,didFinishLaunchingWithOptions launchOptions: NSDictionary!) -> Bool {

        self.window = UIWindow(frame: UIScreen.mainScreen().bounds)

        // ...

        self.window!.tintColor = UIColor.orangeColor()

        return true
    }
}

这是Swift等同于Objective-C:

@interface AppDelegate <UIResponder,UIApplicationDelegate>

@property (nonatomic,strong) UIWindow *window;

@end

@implementation AppDelegate

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

    self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];

    // ...

    self.window.tintColor = [UIColor orangeColor];

    return YES;
}

@end

如果您正在使用故事板,请不要在AppDelegate中放置任何代码,只需更改故事板的“Global Tint”属性

原文链接:https://www.f2er.com/swift/319592.html

猜你在找的Swift相关文章