UIBarButtonItem 的插座不工作

Outlets to UIBarButtonItems not working

我有一个UIToolbar。这个工具栏有两个元素,一个图像和一个滑块。图像在视图内。所以工具栏上的每个 UIBarButtomItems 都有这个结构

TOOLBAR
  │
  ├─────── UIBarButtomItem
  │              │
  │              │
  │            view
  │              │
  │              └─── imageView
  │
  └─────── UIBarButtomItem
                 │
                 │
               slider

此工具栏有自己的 class。

我尝试将 IBOutlets 从滑块、从 imageView 甚至从按钮拖动到它的 class,但它不起作用。 Xcode 接受工具栏所在的 viewController 的出口,但我试图将此工具栏的所有逻辑与其视图控制器分开。

缺少什么?

尝试手动编写出口 属性(使用关键字 IBOutlet),并通过从 属性 声明左侧出现的空循环拖动,从代码连接到 UI。