带有动态表格单元格的侧边菜单将导航页面,但导航控制器将为零

时间:2015-06-09 12:37:21

标签: ios swift uinavigationcontroller

我使用this创建了sidemenu。

但差异只是我使用了动态UITableViewCell而不是静态。

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

我使用的导航代码如下:

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

它将导航页面,但导航控制器将在此之后为零。

可能是什么问题?任何建议都会非常感激。

1 个答案:

答案 0 :(得分:1)

您需要推送新的视图控制器,而不是使用“show”。

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