我已經爲錯誤消息創建了自定義視圖。XCode不加載自定義視圖
我創建了一個ErrorView.swift子分級UIView
,我還創建了一個ErrorView.xib在Interface Builder中使用。
在身份檢查我設置的自定義類廈門國際銀行作爲ErrorView.swift但 當我嘗試加載它不工作,這個特定的視圖。
爲什麼?你可以幫我嗎?
這是代碼:
我叫個性化類ErrorView
Class ErrorView: UIView {
class func errorInView(view:UIView, animted:Bool) -> ErrorView {
println("ERROR VIEW LOADED")
let errorView = ErrorView(frame: view.bounds)
errorView.opaque = false
view.addSubview(errorView)
return errorView
}
}
我的廈門國際銀行:
http://i59.tinypic.com/23tnlev.png
這是我在ViewController
用代碼來調用視圖。
let errorView = ErrorView.errorInView(self.view, animted: true)