The SDK includes help screens to aid users in getting the best results. You can pass the title and view controller for each screen to the GiniConfiguration.shared.customMenuItems
using a list of HelpMenuItem
structs:
let customMenuItem = HelpMenuItem.custom("Custom menu item", CustomMenuItemViewController()) configuration.customMenuItems = [customMenuItem]
To deactivate the supported formats help screen, pass false
to GiniConfiguration.shared.shouldShowSupportedFormatsScreen
.
Valid for iPad only.
Read more in UI Customization Guide Help Screen.