我正在尝试从tabBar中提取一个帧但是我收到一条错误说明:
Could not find member 'frame'.
这有效:
let frame : CGRect? = self.tabBarController?.tabBar.frame
但事实并非如此:
let frame : CGRect = self.tabBarController?.tabBar.frame!
答案 0 :(得分:0)
通过执行以下操作,我能够解决这个问题:
let optFrame : CGRect! = self.tabBarController?.tabBar.frame
let frame = optFrame as CGRect