引用子视图控制器时对成员'first(where :)'的错误引用

时间:2018-06-04 23:08:20

标签: ios swift childviewcontroller parentviewcontroller

我正在编写iOS应用程序并且有一个我想要引用的子视图控制器。子视图控制器是父视图的委托。

在父视图控制器的顶部,我有:fileprivate var cameraViewController: CameraViewController<AnyObject>?

viewDidLoad(),我有

guard let cameraController = childViewControllers.first as? CameraViewController else  {
            fatalError("Check storyboard for missing CameraViewController")
        }

        cameraViewController = cameraController

但是,我收到错误:Ambiguous reference to member 'first(where:)'

任何人都可以向我解释为什么会这样吗?我父母只有一个子视图控制器。

2 个答案:

答案 0 :(得分:0)

无法重现。这是我的应用程序的单视图控制器文件中的整个代码:

import UIKit
class CameraViewController : UIViewController {}
class ViewController: UIViewController {
    fileprivate var cameraViewController: CameraViewController?
    override func viewDidLoad() {
        super.viewDidLoad()
        guard let cameraController = childViewControllers.first as? CameraViewController else  {
            fatalError("Check storyboard for missing CameraViewController")
        }
        cameraViewController = cameraController
    }
}

它编译得很好。

答案 1 :(得分:0)

CameraViewController需要在任何地方都一样。当我将cameraViewController实例化为CameraViewController时,需要在代码的第二部分中反映出来。第二部分应如下所示:

guard let cameraController = childViewControllers.first as? CameraViewController<AnyObject> else  {
            fatalError("Check storyboard for missing CameraViewController")
        }

        cameraViewController = cameraController