1
4

1 回答 1

1

在我的 Swift Catalyst 应用程序(macOS 10.15.3、Xcode 11.3.1)中,我可以调用

NSTouchBar.isAutomaticCustomizeTouchBarMenuItemEnabled = true

在我的override func makeTouchBar()方法中,“自定义触摸栏...”菜单项出现在“查看”菜单选项卡中。对于缺少的标签,以下工作:

func touchBar(_ touchBar: NSTouchBar, makeItemForIdentifier identifier: NSTouchBarItem.Identifier) -> NSTouchBarItem? {
        if identifier == yourIdentifier {
            let item = NSPickerTouchBarItem(...)

            item.customizationLabel = "View Segmented Control"

            return item
        }
        return nil
    }
于 2020-03-01T06:56:20.677 回答