I now want to publish my app as a Mac OS app as well. This is now possible. During the check, however, the app was rejected because no help was stored and no help text was displayed when clicking on the Help menu. With the following addition I simply removed the superfluous menu items.
//Insert in AppDelegate.swift override func buildMenu(with builder: UIMenuBuilder) { super.buildMenu(with: builder) /* Do something */ builder.remove(menu: .view) builder.remove(menu: .format) builder.remove(menu: .edit) builder.remove(menu: .file) builder.remove(menu: .window) builder.remove(menu: .help) }
Über den Autor