Properties | |
UIInterfaceOrientationMask | supportedOrientationMask |
UIInterfaceOrientation | preferredOrientation |
BOOL | keyboardVisible |
ABKInAppMessageWindowController * | inAppMessageWindowController |
id< ABKInAppMessageUIDelegate > | uiDelegate |
Additional Inherited Members |
|
readwriteatomicassign |
The ABKInAppMessageWindowController that is being shown.
|
readwriteatomic |
keyboardVisible will have the value YES when the keyboard is shown.
|
readwriteatomic |
preferredOrientation allows you to select which orientation should be preferred if multiple orientations are supported by the view controller. If set to a value other than UIInterfaceOrientationUnknown, the value of preferredOrientation will be returned by preferredInterfaceOrientationForPresentation in the in-app message view controller. Otherwise, the current status bar orientation will be returned.
The default value of preferredOrientation is UIInterfaceOrientationUnknown, which means status bar orientation should be set for in-app message orientation.
|
readwriteatomic |
supportedOrientationMask allows you to change which orientation mask the in-app message supports. In-app messages will normally support the orientations specified in the app settings, but the method supportedInterfaceOrientations may optionally override that. The value of supportedOrientationMask will be returned in supportedInterfaceOrientations in the in-app message view controller.
The default value of supportedOrientationMask is UIInterfaceOrientationMaskAll.
|
readwriteatomicweak |
The optional ABKInAppMessageUIDelegate that can be used to specify the UI behaviors of in-app messages.