管理同一视图控制器的多个实例

Managing multiple instances of the same view controller

我正在使用 UIPageViewController,它在故事板中有五个视图控制器,我为每个视图控制器创建了一个 class。一切正常,但是我希望改进我的代码,因为五个视图控制器几乎在所有方面都是相同的(它们都包含一个 table 视图,只是它显示的信息不同)。 我希望在我的页面视图控制器中有一个视图控制器并创建该视图控制器的五个实例,而不必重复我的代码五次。 我知道可以使用相同的故事板标识符实例化多个视图控制器,因此创建一个视图控制器的多个实例 class,但我的问题是如何管理每个实例的属性。例如,如果我需要更改 table 视图背景颜色? 先感谢您。

这绝对是您解决此问题的方式。

即使控制器之间存在一些差异,但如果大部分功能相同,那么您可以使用单个 class.

你需要做的就是设置一个class级别的变量来标识你正在实例化的控制器,并用它来控制tableView数据、颜色等,

开始的一种方法是使用枚举来识别您的不同情况 - 您可以将这些常量用于 segue 标识符并跟踪演示视图控制器的每个实例

enum ViewControllerType : String
{
    case controllerType1 = "Controller1"
    case controllerType2 = "Controller2"
    case controllerType3 = "Controller3"
    case controllerType4 = "Controller4"
    case controllerType5 = "Controller5"
}

然后,利用prepare(forSegue方法

override func prepare(for segue: UIStoryboardSegue, sender: Any?)
{
    switch segue.identifier!
    {
    case ViewControllerType.controllerType1.rawValue:
        // standard definition
        let presentationVC : GenericViewController = segue.destination as! GenericViewController
        presentationVC.viewID = .dayView = ViewControllerType.controllerType1.rawValue
        presentationVC.delegate = self
        // specific to this controller
        presentationVC.dataSource = dataSourceUsedForType1

    case ViewControllerType.controllerType2.rawValue:
        // standard definition
        let presentationVC : GenericViewController = segue.destination as! GenericViewController
        presentationVC.viewID = .dayView = ViewControllerType.controllerType2.rawValue
        presentationVC.delegate = self
        // specific to this controller
        presentationVC.dataSource = dataSourceUsedForType2

        // and so on for all cases ...

    default:
        break
    }
}

现在这意味着您将实例化一个演示视图控制器,它有一个变量 viewID,可用于对颜色等进行特定于类型的更改,并且具有为UITableView

然后修改您的演示文稿 class 以具有类似这样的内容

class GenericViewController: UIViewController
{
    var viewID : String = ""

    override func viewDidLoad()
    {
        super.viewDidLoad()

        switch viewID {
        case ViewControllerType.controllerType1.rawValue:
            // make specific changes to the view and data source here
            break
        case ViewControllerType.controllerType2.rawValue:
            // make specific changes to the view and data source here
            break
        // and so on for all cases ...
        default:
            // handle default behaviour
            break
        }
    }
}

presentation view controller 中任何你需要做特定类型的事情的地方,只需要包含一个基于 viewID

的开关