RBManagedFormAlertSchema Class Reference
Inherits from | NSObject |
---|---|
Declared in | RBManagedFormAlertSchema.h |
formSchema
The schema of the managed form that will be presented.
@property (nonatomic, nonnull) RBManagedFormSchema *formSchema
Discussion
The schema of the managed form that will be presented.
Declared In
RBManagedFormAlertSchema.h
buttonTitles
The titles of the buttons on the form alert.
@property (nonatomic, nullable, readonly) NSArray<NSString*> *buttonTitles
Discussion
The titles of the buttons on the form alert.
Declared In
RBManagedFormAlertSchema.h
buttonIdentifiers
The identifiers of the buttons on the form alert.
@property (nonatomic, nullable, readonly) NSArray<NSString*> *buttonIdentifiers
Discussion
The identifiers of the buttons on the form alert.
Declared In
RBManagedFormAlertSchema.h
shouldUseSchemaAlignment
Whether or not the alignment specified in this schema should be used rather than the default value on the presenting view controller. Default = NO.
@property (nonatomic) BOOL shouldUseSchemaAlignment
Discussion
Whether or not the alignment specified in this schema should be used rather than the default value on the presenting view controller. Default = NO.
Declared In
RBManagedFormAlertSchema.h
alignment
The vertical alignment to use when positioning the form alert view.
@property (nonatomic) RBVerticalAlignment alignment
Discussion
The vertical alignment to use when positioning the form alert view.
Declared In
RBManagedFormAlertSchema.h
shouldUseSchemaMargin
Whether or not the margin specified in this schema should be used rather than the default value on the presenting view controller.
@property (nonatomic) BOOL shouldUseSchemaMargin
Discussion
Whether or not the margin specified in this schema should be used rather than the default value on the presenting view controller.
Declared In
RBManagedFormAlertSchema.h
margin
The margin to use around the outside of the form alert view when positioning it within the presenting view controller.
@property (nonatomic) UIEdgeInsets margin
Discussion
The margin to use around the outside of the form alert view when positioning it within the presenting view controller.
Declared In
RBManagedFormAlertSchema.h
animator
The animator to use when animating the presentation and dismissal transitions.
@property (nonatomic, nullable) RBPresentationAnimator *animator
Discussion
The animator to use when animating the presentation and dismissal transitions.
Declared In
RBManagedFormAlertSchema.h
shouldOpenFirstFieldForEditing
Whether or not the first editable field should be automatically selected (opening the input view) when the form alert is opening. Default = NO.
@property (nonatomic) BOOL shouldOpenFirstFieldForEditing
Discussion
Whether or not the first editable field should be automatically selected (opening the input view) when the form alert is opening. Default = NO.
Declared In
RBManagedFormAlertSchema.h
keyboardReturnAction
The action that should be performed when the return button is
tapped on the keyboard. Default = RBManagedFormKeyboardReturnActionCloseKeyboard
@property (nonatomic) RBManagedFormKeyboardReturnAction keyboardReturnAction
Discussion
The action that should be performed when the return button is
tapped on the keyboard. Default = RBManagedFormKeyboardReturnActionCloseKeyboard
Declared In
RBManagedFormAlertSchema.h
themeIdentifier
The identifier of the theme to apply to the managed alert form prior to presenting it.
@property (nonatomic, nullable) NSString *themeIdentifier
Discussion
The identifier of the theme to apply to the managed alert form prior to presenting it.
Declared In
RBManagedFormAlertSchema.h
themeOverrides
Theme values to apply after any other prior theming has been applied.
@property (nonatomic, nullable) NSDictionary<NSString*id> *themeOverrides
Discussion
Theme values to apply after any other prior theming has been applied.
Declared In
RBManagedFormAlertSchema.h
– setButtons:withTitles:
Defines the buttons that will be provided. By default a functioning submit and cancel button are provided.
- (void)setButtons:(nonnull NSArray<NSString*> *)identifiers withTitles:(nonnull NSArray<NSString*> *)titles
Parameters
identifiers |
The unique identifier for each button. Note you may use the pre-defined identifier constants in |
---|---|
titles |
The buttons titles. |
Discussion
Defines the buttons that will be provided. By default a functioning submit and cancel button are provided.
Declared In
RBManagedFormAlertSchema.h