Unable to access index of tabBar item using swift

2019-04-06 05:29发布

Environment: xcode 6GM, Language Swift. I was setting image color of a tabBar item using this code in xcode 6 beta2

var cameraTab : UITabBarItem = self.tabBar.items[1] as UITabBarItem

But now in xcode 6GM it is giving error. Error: [AnyObject]? does not have a member named 'subscript'

2条回答
乱世女痞
2楼-- · 2019-04-06 05:39

items property is optional for tabBar. Try optional chaining:

var cameraTab : UITabBarItem = self.tabBar.items?[1] as UITabBarItem
查看更多
萌系小妹纸
3楼-- · 2019-04-06 05:43

items is Optional - you can do:

   if let items = self.tabBar.items {
    println("\(items[1])")
  }

or

  var cameraTab : UITabBarItem = self.tabBar.items![1] as UITabBarItem
查看更多
登录 后发表回答