是否可以加载.xib
文件而无需通过self.view
加载?
我尝试了以下内容:
UINib *customNib = [UINib nibWithNibName:@"ViewControllerContact" bundle:nil];
ViewControllerContact *customView = [[customNib instantiateWithOwner:self options:nil] objectAtIndex:0];
[self.view addSubview:customView];
但是,因为代码正在执行的当前类没有视图(它只是NSObject
),所以它不会启动.xib
。