[Swift]ViewController中xib控件为空

本文介绍了解决ViewController xib中控件为空导致崩溃的问题。主要通过正确初始化ViewController并确保在viewDidLoad之后使用xib中的控件来避免崩溃。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

在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控件时要注意。如:

   var naviTitle :String?{
        didSet{
            naviView.title = naviTitle
        }
    }

  应当在viewDidLoad之后使用这些控件。 

 

转载于:https://www.cnblogs.com/-zyb/p/5603230.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值