[Swift]ViewController中xib控件为空

[Swift]ViewController中xib控件为空,第1张

概述在ViewController的xib中定义了一些控件,然后在使用的时候会因为这个控件为空而崩溃,报错为: Swift Error fatal error: unexpectedly found nil while unwrapping an Optional value What? 解决办法如下: 1.首先要保证正确初始化了ViewController,使用初始化方法init(nibName n 在VIEwController的xib中定义了一些控件,然后在使用的时候会因为这个控件为空而崩溃,报错为:
Swift Error Fatal error: unexpectedly found nil while unwrapPing an Optional value
What?
解决办法如下:
1.首先要保证正确初始化了VIEwController,使用初始化方法init(nibname nibnameOrNil:String?,bundle nibBundleOrNil:NSBundle?)初始化视图控制器(OC中对应-(instancetype)initWithNibname:(Nsstring*)nibnameOrNil bundle:(NSBundle*)nibBundleOrNil), OC中直接使用init也是可以的,这时系统会自动调用initWithNibname方法。
/*
The designated initializer. If you subclass UIVIEwController,you must call the super implementation of this
method,even if you aren't using a NIB. (As a convenIEnce,the default init method will do this for you,
and specify nil for both of this methods arguments.) In the specifIEd NIB,the file's Owner proxy should
have its class set to your vIEw controller subclass,with the vIEw outlet connected to the main vIEw. If you
invoke this method with a nil nib name,then this class' -loadVIEw method will attempt to load a NIB whose
name is the same as your vIEw controller's class. If no such NIB in fact exists then you must either call
-setVIEw: before -vIEw is invoked,or overrIDe the -loadVIEw method to set up your vIEws programatically.
*/
- (instancetype)initWithNibname:(nullable Nsstring *)nibnameOrNil bundle:(nullable NSBundle *)nibBundleOrNil

2.在vIEwDIDLoad方法加载之前,这些xib的控件是可能为空的,所以在变量的属性观察器中使用xib控件时要注意。如:
varnaviTitle :String?{
dIDSet{
naviVIEw.Title = naviTitle
}
}
应当在vIEwDIDLoad之后使用这些控件。 总结

以上是内存溢出为你收集整理的[Swift]ViewController中xib控件为空全部内容,希望文章能够帮你解决[Swift]ViewController中xib控件为空所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1074826.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-26
下一篇 2022-05-26

发表评论

登录后才能评论

评论列表(0条)

保存