我正在尝试从我的注册页面展示我的setBusinessPremiseController()。
如果我使用self.present(sbpc, animated: true, completion: nil)
,则会显示控制器,但顶部的搜索栏不会显示。
如果我使用self.navigationController?.pushViewController(sbpc, animated: true)
,它将打印:
2018-08-13 19:50:30.807183+0800 Grapevine2019[48175:4652959] Could not inset scale from edge 9
func presentSetBusinessPremiseController(){
let sbpc = setBusinessPremiseController()
//self.present(sbpc, animated: true, completion: nil)
self.navigationController?.pushViewController(sbpc, animated: true)
}