如何在另一个故事板中的 xib 文件 swift 中呈现新控制器
How to present new controller in a xib file swift in another storyboard
我想在另一个故事板中将控制器呈现给 xib 文件
同时,我想用这个xib来使用其他几个storyboard
我该怎么做?
请按此步骤操作。
注册笔尖
let xibController = NewViewController(nibName: "XIBController", bundle: nil)
当前视图模态
self.presentViewController(xibController, animated: true, completion: nil)
我想在另一个故事板中将控制器呈现给 xib 文件 同时,我想用这个xib来使用其他几个storyboard 我该怎么做?
请按此步骤操作。
注册笔尖
let xibController = NewViewController(nibName: "XIBController", bundle: nil)
当前视图模态
self.presentViewController(xibController, animated: true, completion: nil)