If you open any app, it has the menu bar items on top with the last one being help. When I run my SwiftUI app for macOS right now and press help on the menu and then "(Application Name) help" it just says "Help isn't available for (Application Name)". How can I add support for this?
Asked
Active
Viewed 642 times
3
-
Are you using the SwiftUI lifecycle? Do you intend to use the standard help document format or display your own help view? – jnpdx Mar 31 '21 at 03:34
-
1I am using the SwiftUI lifecycle and intend on using the standard help document format. However, I would also be curious on how to create my own view too for help simplicities sake – Denny L. Mar 31 '21 at 04:52
-
Does this answer your question? [SwiftUI: How to implement Edit menu in macOS app](https://stackoverflow.com/questions/64624369/swiftui-how-to-implement-edit-menu-in-macos-app) – lorem ipsum Mar 31 '21 at 08:00
-
Okay that answers 1 of the 2 questions about making a custom view for the help menu. How about if I wanted to adapt the standard document format? – Denny L. Mar 31 '21 at 16:22
-
1Actually I've tried and I see that I can replace the help button with that but how do I display a view when the button is pressed? – Denny L. Mar 31 '21 at 16:38