所以我有一个我的CustomViewController的nib文件,每次我想要提供这个控制器我
let vc = CustomViewController(nibName: "CustomViewController", bundle: nil)
self.present(vc, animated: true, completion: nil)
我想要的是让CustomViewController自己从nib加载自己。这样父VC中的调用就像这样
let vc = CustomViewController()
self.present(vc, animated: true, completion: nil)
答案 0 :(得分:3)
在CustomViewController中添加此init方法。它将根据您的需要工作。
convenience init() {
self.init(nibName: "CustomViewController", bundle: nil)
}
答案 1 :(得分:2)
试试这个......
MyViewClass *myViewObject = [[[NSBundle mainBundle] loadNibNamed:@"MyViewClassNib" owner:self options:nil] objectAtIndex:0]