从没有视图的类打开.xib

时间:2014-08-14 13:08:33

标签: ios objective-c class xib

是否可以加载.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

0 个答案:

没有答案