On this page:
Overview
...
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:
Code Block |
---|
|
let customMenuItem = HelpMenuItem.custom("Custom menu item", CustomMenuItemViewController())
configuration.customMenuItems = [customMenuItem] |
To deactivate the supported formats help screen, pass false
to GiniConfiguration.shared.shouldShowSupportedFormatsScreen
.
Expand |
---|
title | shouldShowDragAndDropTutorial |
---|
|
Sets if the DragAndDrop step should be shown in the Open with tutorial. Code Block |
---|
| @objc
public var shouldShowDragAndDropTutorial: Bool |
|
For more information about UI customization, see Help Screen.