当对象数组为空时显示 UISplitview 辅助视图的回退屏幕



我有一个与最初在UISplitView中加载辅助视图相关的快速问题。我目前在我的 masterVC 中有代码.swift用数组中的第一个对象(如果有的话)填充 detailsVC。这工作正常,问题是当数组为空时,我可以预见地得到fatal error: unexpectedly found nil while unwrapping an Optional value.

所以我的问题是,当没有对象时,我如何设置一个单独的"未找到对象"样式的屏幕来回退?

谢谢,这是我的MasterVC视图DidLoad的代码

let initialIndexPath = NSIndexPath(forRow: 0, inSection: 0)
    if objects.count != 0 {
        self.tableView.selectRowAtIndexPath(initialIndexPath, animated: true, scrollPosition:UITableViewScrollPosition.None)
        if UIDevice.currentDevice().userInterfaceIdiom == .Pad {
            self.performSegueWithIdentifier("showDetailsSegue", sender: initialIndexPath)
        }
    } else {
        // I'm guessing the code would go here.
    }

好的想通了,这是我需要做的。

  1. 创建一个新的UIViewController,我只是称之为"NoObjectVC"并将其连接起来。
  2. 在情节提要中,将其作为关系 segue 详细信息视图控制器挂接到 SplitView 控制器,嵌入到导航控制器中。
  3. 从MasterVC创建一个segue,我称之为"noObjectSegue"
  4. 在MasterVC的prepareForSegue函数中添加以下内容:

    else if segue.identifier == "noObjectSegue" {
     let navigationController = segue.destinationViewController as! UINavigationController
     let controller = navigationController.topViewController as! NoObjectVC
     controller.title = "No Objects Found"
    }
    
  5. 最后在MasterVC中,viewDidLoad()添加:

    let initialIndexPath = NSIndexPath(forRow: 0, inSection: 0)
    if objects.count != 0 {
        self.tableView.selectRowAtIndexPath(initialIndexPath, animated: true, scrollPosition:UITableViewScrollPosition.None)
        if UIDevice.currentDevice().userInterfaceIdiom == .Pad {
            self.performSegueWithIdentifier("showDetailSegue", sender: initialIndexPath)
        }
    } else {
        if UIDevice.currentDevice().userInterfaceIdiom == .Pad {
            print("No Objects Available")
            self.performSegueWithIdentifier("noObjectSegue", sender: self)
        }
    }
    

不确定这会对任何人有所帮助,但我想我会记录下来以防万一。

相关内容

  • 没有找到相关文章

最新更新