2017-07-17 86 views
0

我是新來的ios世界,並有一個關於主細節應用程序的問題。 根視圖是UISplitViewController。我有LoginViewController,並希望使其成爲根視圖,然後按鈕後單擊segue UISplitViewController。
enter image description here主細節應用程序初始視圖控制器更改

我嘗試過,但收到錯誤「推塞格斯只能用在源控制器由UINavigationController的一個實例管理」

AppDelegate.swift 


import UIKit 

@UIApplicationMain 
class AppDelegate: UIResponder, UIApplicationDelegate, UISplitViewControllerDelegate { 

    var window: UIWindow? 


    func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool { 
     // Override point for customization after application launch. 
//  let splitViewController = window!.rootViewController as! UISplitViewController 
//  let navigationController = splitViewController.viewControllers[splitViewController.viewControllers.count-1] as! UINavigationController 
//  navigationController.topViewController!.navigationItem.leftBarButtonItem = splitViewController.displayModeButtonItem 
//  splitViewController.delegate = self 
     return true 
    } 

    func applicationWillResignActive(_ application: UIApplication) { 
     // Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state. 
     // Use this method to pause ongoing tasks, disable timers, and invalidate graphics rendering callbacks. Games should use this method to pause the game. 
    } 

    func applicationDidEnterBackground(_ application: UIApplication) { 
     // Use this method to release shared resources, save user data, invalidate timers, and store enough application state information to restore your application to its current state in case it is terminated later. 
     // If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits. 
    } 

    func applicationWillEnterForeground(_ application: UIApplication) { 
     // Called as part of the transition from the background to the active state; here you can undo many of the changes made on entering the background. 
    } 

    func applicationDidBecomeActive(_ application: UIApplication) { 
     // Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface. 
    } 

    func applicationWillTerminate(_ application: UIApplication) { 
     // Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:. 
    } 

    // MARK: - Split view 

    func splitViewController(_ splitViewController: UISplitViewController, collapseSecondary secondaryViewController:UIViewController, onto primaryViewController:UIViewController) -> Bool { 
     guard let secondaryAsNavController = secondaryViewController as? UINavigationController else { return false } 
     guard let topAsDetailController = secondaryAsNavController.topViewController as? DetailViewController else { return false } 
     if topAsDetailController.detailItem == nil { 
      // Return true to indicate that we have handled the collapse by doing nothing; the secondary controller will be discarded. 
      return true 
     } 
     return false 
    } 

} 
LoginViewController

import UIKit 

class LoginViewController: UIViewController { 


    @IBOutlet weak var TryButton: UIButton! 

    override func viewDidLoad() { 
     super.viewDidLoad() 
     TryButton.layer.cornerRadius = 10 
    } 

    @IBAction func policiesButtonClick(_ sender: Any) { 
     guard let url = URL(string: "https://google.com/#q=") else { 
      return 
     } 
     if #available(iOS 10.0, *) { 
      UIApplication.shared.open(url) 
     } else { 
      UIApplication.shared.openURL(url) 
     } 
    } 

    override func didReceiveMemoryWarning() { 
     super.didReceiveMemoryWarning() 
     // Dispose of any resources that can be recreated. 
    } 


} 
+0

使用另一種賽格瑞的https:/ /stackoverflow.com/questions/25966215/whats-the-difference-between-all-the-selection-segues –

回答

0

嘗試嵌入與導航控制器控制器如下:

選擇導航控制器

enter image description here

0

您應該添加mainViewController之後的UINavigationController,並在那裏設置Root和導航的其餘部分。由於SplitViewController不是NavigationController,他無法制作Push's和Pop's。

0

您應該將您的根視圖更改爲UINavigationController。錯誤顯然是這樣說的。

「推送當源控制器由 管理的UINavigationController的一個實例塞格斯只能用」

SplitViewController到NavigationControllers的SEGUE是不同的。它應該嵌入不是pop。 push和pop塞格斯僅與導航控制器相關

相關問題