我试图更新PKHUD(https://github.com/pkluz/PKHUD)以使用Xcode 6 beta 5,除了一个小细节之外我几乎已经完成了:
internal class Window: UIWindow {
required internal init(coder aDecoder: NSCoder!) {
super.init(coder: aDecoder)
}
internal let frameView: FrameView
internal init(frameView: FrameView = FrameView()) {
self.frameView = frameView
// this is the line that bombs
super.init(frame: UIApplication.sharedApplication().delegate.window!.bounds)
rootViewController = WindowRootViewController()
windowLevel = UIWindowLevelNormal + 1.0
backgroundColor = UIColor.clearColor()
addSubview(backgroundView)
addSubview(frameView)
}
// more code here
}
Xcode给出了错误UIWindow? does not have a member named 'bounds'
。
我很确定这是一个与打字有关的微不足道的错误,但我几个小时都找不到答案。
此外,此错误仅发生在Xcode 6 beta 5中,这意味着答案在于Apple最近更改的内容。
非常感谢所有帮助。
答案 0 :(得分:6)
window
协议中UIApplicationDelegate
属性的声明
改变了
optional var window: UIWindow! { get set } // beta 4
到
optional var window: UIWindow? { get set } // beta 5
这意味着它是一个可选属性,产生一个可选的UIWindow
:
println(UIApplication.sharedApplication().delegate.window)
// Optional(Optional(<UIWindow: 0x7f9a71717fd0; frame = (0 0; 320 568); ... >))
所以你必须打开它两次:
let bounds = UIApplication.sharedApplication().delegate.window!!.bounds
或者,如果您想检查应用程序代理的可能性
没有窗口属性,或者设置为nil
:
if let bounds = UIApplication.sharedApplication().delegate.window??.bounds {
} else {
// report error
}
更新:使用Xcode 6.3,delegate
属性现在也是
定义为可选,因此代码现在是
let bounds = UIApplication.sharedApplication().delegate!.window!!.bounds
或
if let bounds = UIApplication.sharedApplication().delegate?.window??.bounds {
} else {
// report error
}
有关更多解决方案,另请参阅Why is main window of type double optional?。