You can show your own The SDK includes help screens to aid users in getting the Gini Bank SDKbest results. You can pass the title and view controller for each screen to the GiniConfiguration.shared.customMenuItems
using a list of HelpMenuItem
structs:
Code Block |
---|
|
let customMenuItem = HelpMenuItem.custom("Custom menu item", CustomMenuItemViewController())
configuration.customMenuItems = [customMenuItem] |
You can also disable To deactivate the supported formats help screen by passing , pass false
to GiniConfiguration.shared.shouldShowSupportedFormatsScreen
.
...