在学习iOS
开发的时候,学习使用xib
自定义View
,然后在storyboard
中使用,虽然直接编译运行没有问题,但是在Interface Builder
(简称IB
)中预览的时候,一直会报一个Failed to render and update auto layout status for ViewController: The agent threw an exception
的问题,并且也无法预览。
经过一番搜索之后,在
stackoverflow
上看到下面的提问:Failed to render instance of ClassName: The agent threw an exception loading nib in bundle
其中高赞回答如下:
WX20190111-105016.png
我的加载
xib
方法如下:
guard let result = Bundle.main.loadNibNamed("TestView", owner: self, options: nil) as? [UIView] else {
fatalError("init failed")
}
Bundle.main
可以获取我们的app
的main bundle
,但是IB会获取到nil
,所以导致无法加载xib
,并报上面的错误信息。
根据回答中的方法将加载xib
的代码改动成下面的代码:
let bundle = Bundle(for: type(of: self))
let nib = UINib(nibName: "TestView", bundle: bundle)
guard let result = nib.instantiate(withOwner: self, options: nil) as? [UIView] else {
fatalError("init failed")
}
改动之后就可以在IB
中预览我们自定义的view
了。
如过storyboard
还是报错误,可以重启xcode
后,再打开storyboard
进行预览。
网友评论