2017-09-29 7 views
4

を置き換え私はアプリを構築し、今私は2つの分割ビューコントローラを追加してい始め、私のMain.storyboardで、それはこのイメージスウィフト4分割ビューコントローラの詳細は、マスター

enter image description here

のように見える私が追加しました私のマスターにコードを次

import UIKit 

class ContactsMaster: UITableViewController { 

    var ContactsDetailController: ContactsDetail? = nil 
    var objects = [Any]() 


    override func viewDidLoad() { 
     super.viewDidLoad() 
     // Do any additional setup after loading the view, typically from a nib. 
     navigationItem.leftBarButtonItem = editButtonItem 

     let addButton = UIBarButtonItem(barButtonSystemItem: .add, target: self, action: #selector(insertNewObject(_:))) 
     navigationItem.rightBarButtonItem = addButton 
     if let split = splitViewController { 
      let controllers = split.viewControllers 
      ContactsDetailController = (controllers[controllers.count-1] as! UINavigationController).topViewController as? ContactsDetail 
     } 
    } 

    override func viewWillAppear(_ animated: Bool) { 
     clearsSelectionOnViewWillAppear = splitViewController!.isCollapsed 
     super.viewWillAppear(animated) 
    } 

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

    @objc 
    func insertNewObject(_ sender: Any) { 
     objects.insert(NSDate(), at: 0) 
     let indexPath = IndexPath(row: 0, section: 0) 
     tableView.insertRows(at: [indexPath], with: .automatic) 
    } 

    // MARK: - Segues 

    override func prepare(for segue: UIStoryboardSegue, sender: Any?) { 
     if segue.identifier == "showContactDetail" { 
      if let indexPath = tableView.indexPathForSelectedRow { 
       let object = objects[indexPath.row] as! NSDate 
       let controller = (segue.destination as! UINavigationController).topViewController as! ContactsDetail 
       controller.detailItem = object 
       controller.navigationItem.leftBarButtonItem = splitViewController?.displayModeButtonItem 
       controller.navigationItem.leftItemsSupplementBackButton = true 
      } 
     } 
    } 

    // MARK: - Table View 

    override func numberOfSections(in tableView: UITableView) -> Int { 
     return 1 
    } 

    override func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int { 
     return objects.count 
    } 

    override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell { 
     let cell = tableView.dequeueReusableCell(withIdentifier: "Cell", for: indexPath) 

     let object = objects[indexPath.row] as! NSDate 
     cell.textLabel!.text = object.description 
     return cell 
    } 

    override func tableView(_ tableView: UITableView, canEditRowAt indexPath: IndexPath) -> Bool { 
     // Return false if you do not want the specified item to be editable. 
     return true 
    } 

    override func tableView(_ tableView: UITableView, commit editingStyle: UITableViewCellEditingStyle, forRowAt indexPath: IndexPath) { 
     if editingStyle == .delete { 
      objects.remove(at: indexPath.row) 
      tableView.deleteRows(at: [indexPath], with: .fade) 
     } else if editingStyle == .insert { 
      // Create a new instance of the appropriate class, insert it into the array, and add a new row to the table view. 
     } 
    } 


} 

そしてここでは、私の詳細です:

import UIKit 

class ContactsDetail: UIViewController { 

    @IBOutlet weak var detailDescriptionLabel: UILabel! 


    func configureView() { 
     // Update the user interface for the detail item. 
     if let detail = detailItem { 
      if let label = detailDescriptionLabel { 
       label.text = detail.description 
      } 
     } 
    } 

    override func viewDidLoad() { 
     super.viewDidLoad() 
     // Do any additional setup after loading the view, typically from a nib. 
     configureView() 
    } 

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

    var detailItem: NSDate? { 
     didSet { 
      // Update the view. 
      configureView() 
     } 
    } 


} 

私の問題は、私のアプリを実行し、スプリットビューコントローラに移動し、マスター内の項目を選択すると、それは詳細を移動しない代わりにマスターを置き換えます。

私はスプリットビューコントローラだけのサンプルアプリケーションを持っており、サンプルアプリケーションのApp Delegateファイルにこのコードがあります(_アプリケーション:UIApplication、didFinishLaunchingWithOptions launchOptions:[UIApplicationLaunchOptionsKey:Any]? ) - >ブール方法:

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 

そして、この方法もある。

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 
    } 

このコードで私の問題は私のスプリットビューコントローラは、initalコントローラとsplitViewControlleと私の問題ではないということです私は2つの分割ビューコントローラを持っています。どのように私は分割コントローラーをinitalコントローラーにしなくても得ますか?

答えて

0

あなたのマスタークラスはUISplitViewControllerDelegateを実装する必要があります。あなたがする必要がある ので、最初の事:

class ContactsMaster: UITableViewController,UISplitViewControllerDelegate { 

とご主人にこの関数をオーバーライド:

func splitViewController(splitViewController: UISplitViewController, collapseSecondaryViewController secondaryViewController: UIViewController, ontoPrimaryViewController primaryViewController: UIViewController) -> Bool { 
return true  
} 

、その後のviewDidLoad(マスタークラス)で、次のタラを追加します。

self.splitViewController!.delegate = self; 

self.splitViewController!.preferredDisplayMode = UISplitViewControllerDisplayMode.AllVisible 

self.extendedLayoutIncludesOpaqueBars = true 

Iあなたがそれについて書かれた多くのチュートリアルの1つを読むことができるすべての方法を理解したいと思えば、splitviewcontrollerを設定するための多くのステップをスキップすると思います:

http://nshipster.com/uisplitviewcontroller/

0

あなたは偶然あなたのストーリーボードにあなたの詳細VCのためのContactsDetailクラスを設定するのを忘れましたか?

関連する問題