1

我想在右侧栏中选择更改时更新当前可见中心视图控制器上的内容,左侧栏:更改中心视图右侧栏:列出可用项目,在选择更改中心视图时应使用当前选择更新内容,

使用函数为 UIViewController 创建了一个扩展类,并覆盖了所有视图控制器中的函数,但调用只转到父视图控制器函数而不是实际的中心视图控制器,以下是我尝试在右侧边栏表视图上执行该函数的方式项目水龙头

    let appdel = UIApplication.sharedApplication().delegate as! AppDelegate
let currentView = appdel.drawerContainer?.centerViewController
currentView.ProcessSelection(selectedString)

this 执行基类中的函数

extension UIViewController {
   func ProcessSelection(item:String){}
}

并且 ProcessSelection 在 ViewController.swift 被覆盖但没有被调用

4

0 回答 0