我已经使用this创建了sidemenu。

但是区别只是我使用的是动态UITableViewCell而不是静态的。

现在,我在单击侧面菜单项时遇到导航问题。

我曾使用过类似的导航代码:

dispatch_async(dispatch_get_main_queue()) {
    let propertyListing = self.storyboard?.instantiateViewControllerWithIdentifier("PropertyListing") as! PropertyListingController
    self.showViewController(propertyListing as UIViewController, sender: propertyListing )
}

它将导航页面,但此后导航控制器将为nil。

可能是什么问题?任何建议将不胜感激。

最佳答案

无需使用“显示”,而需要推送新的视图控制器。

self.navigationController.pushViewController(propertyListing, animated: true)

10-08 05:49