gpt4 book ai didi

swift - 如何修复 'Cannot call value of non-function type ' UIColor''

转载 作者:行者123 更新时间:2023-11-28 11:39:38 29 4
gpt4 key购买 nike

因为我刚开始学习编程,它显示我的代码有以下错误。

使用未声明的类型“NSObect”无法调用非函数类型“UIColor”的值无法调用非函数类型“UIColor”的值

有人可以在这里指出我的错误并更正我的代码吗? Thanksss 如果你能帮忙:)

func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions:
[NSObect:AnyObject]?) -> Bool {

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

self.window!.backgroundColor = UIColor.whiteColor()

let myTabBar = UITabBarController()

myTabBar.tabBar.backgroundColor = UIColor.clearColor()

let mainViewController = ViewController()
mainViewController.tabBarItem =
UITabBarItem(tabBarSystemItem: .favorites, tag: 100)

let articleViewController = ArticleViewController()
articleViewController.tabBarItem = UITabBarItem(

最佳答案

看起来您使用的是旧代码,因此请替换:

self.window!.backgroundColor = UIColor.whiteColor()

self.window!.backgroundColor = .white

并替换:

myTabBar.tabBar.backgroundColor = UIColor.clearColor()

myTabBar.tabBar.backgroundColor = .clear

关于swift - 如何修复 'Cannot call value of non-function type ' UIColor'',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54049202/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com