How to get rid of Enter Full Screen menu item?

前端 未结 2 1005
南旧
南旧 2021-01-22 05:27

In my Mac OS X app I deleted all default menu items, added my own.

But in View menu at the bottom I can still see Enter Full Screen menu item,

2条回答
  •  小鲜肉
    小鲜肉 (楼主)
    2021-01-22 05:43

    For Swift 4

    func applicationWillFinishLaunching(_ notification: Notification) {
        UserDefaults.standard.set(false, forKey: "NSFullScreenMenuItemEverywhere")
    }
    

提交回复
热议问题