我在我的項目中使用了SWRevealviewcontroller
。起初,我拿了一個viewcontroller
,命名爲「SWREVEALVIEWController」,並將sw_rear
設置爲tableviewcontroller
。並在sw_front
第一部分我設置了一個TabbarViewcontroller
。如何解決swrevealviewcontroller問題
現在,我有我的tableview
,我設置爲sw_rear
幾行數據。
menuArray = ["HOME","ORDER NOW","PHOTOS","REVIEWS","FEEDBACK","RATE US","LOGIN"]
然後點擊每個特定的單元格我將它設置爲適當的viewcontroller像這樣。
func tableView(tableView: UITableView, didSelectRowAtIndexPath indexPath: NSIndexPath) {
switch(indexPath.row)
{
case 0 :
print("1st row")
//self.performSegueWithIdentifier("Main", sender: self)
let mainStoryboard = UIStoryboard(name: "Main", bundle: NSBundle.mainBundle())
let vc : UINavigationController = mainStoryboard.instantiateViewControllerWithIdentifier("home") as! UINavigationController
self.presentViewController(vc, animated: true, completion: nil)
case 1 :
print("2nd row")
let mainStoryboard = UIStoryboard(name: "Main", bundle: NSBundle.mainBundle())
let vc : UINavigationController = mainStoryboard.instantiateViewControllerWithIdentifier("menuVC") as! UINavigationController
self.presentViewController(vc, animated: true, completion: nil)
但使用後,它會去適當的地方,但沒有其tabbar項目。
看到屏幕。第一個畫面是
點擊側邊菜單中的細胞,例如點擊在回家的回家viewcontrollers開放的,但沒有它的TabBar項目之後。如何解決這個問題?
而在這之後的swRevealviewcontromller
點擊細胞菜單上...返回回任何viewcontroller
後不工作的滑動按鈕????
可以爲您的視圖控制器重命名爲其他名稱? –
是啊任何你可以採取的名字@BashirSidani –