# Titanium.UI.iOS

Apple iOS specific UI capabilities. All properties, methods and events in this namespace will only work on Apple iOS devices.

Availability
1.4.0
9.2.0

# Properties

# apiName READONLY

Availability
3.2.0
9.2.0
apiName :String

The name of the API that this proxy corresponds to.

The value of this property is the fully qualified name of the API. For example, Titanium.UI.Button returns Ti.UI.Button.


# appBadge

Availability
5.4.0
9.2.0
appBadge :Number

Value of the badge for the application's springboard icon.

In order to change the app icon badge number you will need to register for notifications. Normally this is done by using local notifications or a push service like Firebase Cloud Messaging (FCM).

Ti.App.iOS.registerUserNotificationSettings({
  types: [
        Ti.App.iOS.USER_NOTIFICATION_TYPE_BADGE
    ]
});

# appSupportsShakeToEdit

Availability
5.4.0
9.2.0
appSupportsShakeToEdit :Boolean

Determines whether the shake to edit system-wide capability is enabled.


# bubbleParent

Availability
3.0.0
9.2.0
bubbleParent :Boolean

Indicates if the proxy will bubble an event to its parent.

Some proxies (most commonly views) have a relationship to other proxies, often established by the add() method. For example, for a button added to a window, a click event on the button would bubble up to the window. Other common parents are table sections to their rows, table views to their sections, and scrollable views to their views. Set this property to false to disable the bubbling to the proxy's parent.

Default: true


# forceTouchSupported READONLY

Availability
5.1.0
9.2.0
forceTouchSupported :Boolean

Determines if the 3D-Touch capability "Force Touch" is supported (true) or not (false) by the device.

Returns true if the device supports 3D-Touch (iPhone 6S / iPhone 6S Plus and later) or false if not.


# statusBarBackgroundColor

Availability
6.0.0
9.2.0
statusBarBackgroundColor :String | Titanium.UI.Color

Sets the global status bar background color for the application. Android does not support setting instances of Titanium.UI.Color

Default: Undefined (Uses the native defaults)

# Methods

# addEventListener

Availability
1.4.0
9.2.0
addEventListener(name, callback) → void

Adds the specified callback as an event listener for the named event.

Parameters

Name Type Description
name String

Name of the event.

callback Callback<Titanium.Event>

Callback function to invoke when the event is fired.

Returns

Type
void

# applyProperties

Availability
3.0.0
9.2.0
applyProperties(props) → void

Applies the properties to the proxy.

Properties are supplied as a dictionary. Each key-value pair in the object is applied to the proxy such that myproxy[key] = value.

Parameters

Name Type Description
props Dictionary

A dictionary of properties to apply.

Returns

Type
void

# createAnchorAttachmentBehavior

Availability
3.2.0
9.2.0
createAnchorAttachmentBehavior([parameters]) → Titanium.UI.iOS.AnchorAttachmentBehavior

Creates and returns an instance of Titanium.UI.iOS.AnchorAttachmentBehavior.

Parameters

Name Type Description
parameters Dictionary<Titanium.UI.iOS.AnchorAttachmentBehavior>

Properties to set on a new object, including any defined by Titanium.UI.iOS.AnchorAttachmentBehavior except those marked not-creation or read-only.

Returns


# createAnimator

Availability
3.2.0
9.2.0
createAnimator([parameters]) → Titanium.UI.iOS.Animator

Creates and returns an instance of Titanium.UI.iOS.Animator.

Parameters

Name Type Description
parameters Dictionary<Titanium.UI.iOS.Animator>

Properties to set on a new object, including any defined by Titanium.UI.iOS.Animator except those marked not-creation or read-only.

Returns


# createBlurView

Availability
5.4.0
9.2.0
createBlurView([parameters]) → Titanium.UI.iOS.BlurView

Creates and returns an instance of Titanium.UI.iOS.BlurView.

Parameters

Name Type Description
parameters Dictionary<Titanium.UI.iOS.BlurView>

Properties to set on a new object, including any defined by Titanium.UI.iOS.BlurView except those marked not-creation or read-only.

Returns


# createCollisionBehavior

Availability
3.2.0
9.2.0
createCollisionBehavior([parameters]) → Titanium.UI.iOS.CollisionBehavior

Creates and returns an instance of Titanium.UI.iOS.CollisionBehavior.

Parameters

Name Type Description
parameters Dictionary<Titanium.UI.iOS.CollisionBehavior>

Properties to set on a new object, including any defined by Titanium.UI.iOS.CollisionBehavior except those marked not-creation or read-only.

Returns


# createCoverFlowView

Availability
1.4.0
9.2.0
createCoverFlowView([parameters]) → Titanium.UI.iOS.CoverFlowView

Creates and returns an instance of Titanium.UI.iOS.CoverFlowView.

Parameters

Name Type Description
parameters Dictionary<Titanium.UI.iOS.CoverFlowView>

Properties to set on a new object, including any defined by Titanium.UI.iOS.CoverFlowView except those marked not-creation or read-only.

Returns


# createDocumentViewer

Availability
2.1.1
9.2.0
createDocumentViewer([parameters]) → Titanium.UI.iOS.DocumentViewer

Creates and returns an instance of Titanium.UI.iOS.DocumentViewer.

Parameters

Name Type Description
parameters Dictionary<Titanium.UI.iOS.DocumentViewer>

Properties to set on a new object, including any defined by Titanium.UI.iOS.DocumentViewer except those marked not-creation or read-only.

Returns


# createDynamicItemBehavior

Availability
3.2.0
9.2.0
createDynamicItemBehavior([parameters]) → Titanium.UI.iOS.DynamicItemBehavior

Creates and returns an instance of Titanium.UI.iOS.DynamicItemBehavior.

Parameters

Name Type Description
parameters Dictionary<Titanium.UI.iOS.DynamicItemBehavior>

Properties to set on a new object, including any defined by Titanium.UI.iOS.DynamicItemBehavior except those marked not-creation or read-only.

Returns


# createGravityBehavior

Availability
3.2.0
9.2.0
createGravityBehavior([parameters]) → Titanium.UI.iOS.GravityBehavior

Creates and returns an instance of Titanium.UI.iOS.GravityBehavior.

Parameters

Name Type Description
parameters Dictionary<Titanium.UI.iOS.GravityBehavior>

Properties to set on a new object, including any defined by Titanium.UI.iOS.GravityBehavior except those marked not-creation or read-only.

Returns


# createLivePhotoBadge

Availability
5.2.0
9.2.0
createLivePhotoBadge(type) → Titanium.Blob

Creates a live photo badge to be used together with the Titanium.UI.iOS.LivePhotoView API.

Supported on iOS 9.1 and later.

Parameters

Name Type Description
type Number

Constant defining the live photo badge behavior.

Returns


# createLivePhotoView

Availability
5.2.0
9.2.0
createLivePhotoView([parameters]) → Titanium.UI.iOS.LivePhotoView

Creates and returns an instance of Titanium.UI.iOS.LivePhotoView.

Parameters

Name Type Description
parameters Dictionary<Titanium.UI.iOS.LivePhotoView>

Properties to set on a new object, including any defined by Titanium.UI.iOS.LivePhotoView except those marked not-creation or read-only.

Returns


# createMenuPopup

Availability
5.2.0
9.2.0
createMenuPopup([parameters]) → Titanium.UI.iOS.MenuPopup

Creates and returns an instance of Titanium.UI.iOS.MenuPopup.

Parameters

Name Type Description
parameters Dictionary<Titanium.UI.iOS.MenuPopup>

Properties to set on a new object, including any defined by Titanium.UI.iOS.MenuPopup except those marked not-creation or read-only.

Returns


# createNavigationWindow DEPRECATED

Availability
3.1.3
9.2.0
createNavigationWindow([parameters]) → Titanium.UI.iOS.NavigationWindow

DEPRECATED SINCE 8.0.0

Use Titanium.UI.NavigationWindow instead.

Creates and returns an instance of Titanium.UI.iOS.NavigationWindow.

Parameters

Name Type Description
parameters Dictionary<Titanium.UI.iOS.NavigationWindow>

Properties to set on a new object, including any defined by Titanium.UI.iOS.NavigationWindow except those marked not-creation or read-only.

Returns


# createPreviewAction

Availability
5.1.0
createPreviewAction([parameters]) → Titanium.UI.iOS.PreviewAction

Creates and returns an instance of Titanium.UI.iOS.PreviewAction.

Parameters

Name Type Description
parameters Dictionary<Titanium.UI.iOS.PreviewAction>

Properties to set on a new object, including any defined by Titanium.UI.iOS.PreviewAction except those marked not-creation or read-only.

Returns


# createPreviewActionGroup

Availability
5.1.0
createPreviewActionGroup([parameters]) → Titanium.UI.iOS.PreviewActionGroup

Creates and returns an instance of Titanium.UI.iOS.PreviewActionGroup.

Parameters

Name Type Description
parameters Dictionary<Titanium.UI.iOS.PreviewActionGroup>

Properties to set on a new object, including any defined by Titanium.UI.iOS.PreviewActionGroup except those marked not-creation or read-only.

Returns


# createPreviewContext

Availability
5.1.0
createPreviewContext([parameters]) → Titanium.UI.iOS.PreviewContext

Creates and returns an instance of Titanium.UI.iOS.PreviewContext.

Parameters

Name Type Description
parameters Dictionary<Titanium.UI.iOS.PreviewContext>

Properties to set on a new object, including any defined by Titanium.UI.iOS.PreviewContext except those marked not-creation or read-only.

Returns


# createPushBehavior

Availability
3.2.0
9.2.0
createPushBehavior([parameters]) → Titanium.UI.iOS.PushBehavior

Creates and returns an instance of Titanium.UI.iOS.PushBehavior.

Parameters

Name Type Description
parameters Dictionary<Titanium.UI.iOS.PushBehavior>

Properties to set on a new object, including any defined by Titanium.UI.iOS.PushBehavior except those marked not-creation or read-only.

Returns


# createSnapBehavior

Availability
3.2.0
9.2.0
createSnapBehavior([parameters]) → Titanium.UI.iOS.SnapBehavior

Creates and returns an instance of Titanium.UI.iOS.SnapBehavior.

Parameters

Name Type Description
parameters Dictionary<Titanium.UI.iOS.SnapBehavior>

Properties to set on a new object, including any defined by Titanium.UI.iOS.SnapBehavior except those marked not-creation or read-only.

Returns


# createSplitWindow

Availability
3.6.0
9.2.0
createSplitWindow([parameters]) → Titanium.UI.iOS.SplitWindow

Creates and returns an instance of Titanium.UI.iOS.SplitWindow.

Parameters

Name Type Description
parameters Dictionary<Titanium.UI.iOS.SplitWindow>

Properties to set on a new object, including any defined by Titanium.UI.iOS.SplitWindow except those marked not-creation or read-only.

Returns


# createStepper

Availability
5.4.0
9.2.0
createStepper([parameters]) → Titanium.UI.iOS.Stepper

Creates and returns an instance of Titanium.UI.iOS.Stepper.

Parameters

Name Type Description
parameters Dictionary<Titanium.UI.iOS.Stepper>

Properties to set on a new object, including any defined by Titanium.UI.iOS.Stepper except those marked not-creation or read-only.

Returns


# createSystemButton

Availability
5.4.0
9.2.0
createSystemButton([parameters]) → Titanium.UI.iOS.SystemButton

Creates and returns an instance of Titanium.UI.iOS.SystemButton.

Parameters

Name Type Description
parameters Dictionary<Titanium.UI.iOS.SystemButton>

Properties to set on a new object, including any defined by Titanium.UI.iOS.SystemButton except those marked not-creation or read-only.

Returns


# createTabbedBar DEPRECATED

Availability
1.4.0
9.2.0
createTabbedBar([parameters]) → Titanium.UI.iOS.TabbedBar

DEPRECATED SINCE 8.0.0

Use Titanium.UI.TabbedBar instead.

Creates and returns an instance of Titanium.UI.iOS.TabbedBar.

Parameters

Name Type Description
parameters Dictionary<Titanium.UI.iOS.TabbedBar>

Properties to set on a new object, including any defined by Titanium.UI.iOS.TabbedBar except those marked not-creation or read-only.

Returns


# createToolbar DEPRECATED

Availability
1.4.0
9.2.0
createToolbar([parameters]) → Titanium.UI.iOS.Toolbar

DEPRECATED SINCE 6.2.0

Use the cross-platform Titanium.UI.Toolbar instead.

Creates and returns an instance of Titanium.UI.iOS.Toolbar.

Parameters

Name Type Description
parameters Dictionary<Titanium.UI.iOS.Toolbar>

Properties to set on a new object, including any defined by Titanium.UI.iOS.Toolbar except those marked not-creation or read-only.

Returns


# createTransitionAnimation

Availability
3.2.0
9.2.0
createTransitionAnimation([parameters]) → Titanium.UI.iOS.TransitionAnimation

Creates and returns an instance of Titanium.UI.iOS.TransitionAnimation.

Parameters

Name Type Description
parameters Dictionary<Titanium.UI.iOS.TransitionAnimation>

Properties to set on a new object, including any defined by Titanium.UI.iOS.TransitionAnimation except those marked not-creation or read-only.

Returns


# createViewAttachmentBehavior

Availability
3.2.0
9.2.0
createViewAttachmentBehavior([parameters]) → Titanium.UI.iOS.ViewAttachmentBehavior

Creates and returns an instance of Titanium.UI.iOS.ViewAttachmentBehavior.

Parameters

Name Type Description
parameters Dictionary<Titanium.UI.iOS.ViewAttachmentBehavior>

Properties to set on a new object, including any defined by Titanium.UI.iOS.ViewAttachmentBehavior except those marked not-creation or read-only.

Returns


# createWebViewConfiguration

Availability
8.0.0
9.2.0
createWebViewConfiguration([parameters]) → Titanium.UI.iOS.WebViewConfiguration

Creates and returns an instance of Titanium.UI.iOS.WebViewConfiguration.

Parameters

Name Type Description
parameters Dictionary<Titanium.UI.iOS.WebViewConfiguration>

Properties to set on a new object, including any defined by Titanium.UI.iOS.WebViewConfiguration except those marked not-creation or read-only.

Returns


# createWebViewDecisionHandler

Availability
8.0.0
9.2.0
createWebViewDecisionHandler([parameters]) → Titanium.UI.iOS.WebViewDecisionHandler

Creates and returns an instance of Titanium.UI.iOS.WebViewDecisionHandler.

Parameters

Name Type Description
parameters Dictionary<Titanium.UI.iOS.WebViewDecisionHandler>

Properties to set on a new object, including any defined by Titanium.UI.iOS.WebViewDecisionHandler except those marked not-creation or read-only.

Returns


# createWebViewProcessPool

Availability
8.0.0
9.2.0
createWebViewProcessPool([parameters]) → Titanium.UI.iOS.WebViewProcessPool

Creates and returns an instance of Titanium.UI.iOS.WebViewProcessPool.

Parameters

Name Type Description
parameters Dictionary<Titanium.UI.iOS.WebViewProcessPool>

Properties to set on a new object, including any defined by Titanium.UI.iOS.WebViewProcessPool except those marked not-creation or read-only.

Returns


# fireEvent

Availability
1.4.0
9.2.0
fireEvent(name[, event]) → void

Fires a synthesized event to any registered listeners.

Parameters

Name Type Description
name String

Name of the event.

event Dictionary

A dictionary of keys and values to add to the Titanium.Event object sent to the listeners.

Returns

Type
void

# removeEventListener

Availability
1.4.0
9.2.0
removeEventListener(name, callback) → void

Removes the specified callback as an event listener for the named event.

Multiple listeners can be registered for the same event, so the callback parameter is used to determine which listener to remove.

When adding a listener, you must save a reference to the callback function in order to remove the listener later:

var listener = function() { Ti.API.info("Event listener called."); }
window.addEventListener('click', listener);

To remove the listener, pass in a reference to the callback function:

window.removeEventListener('click', listener);

Parameters

Name Type Description
name String

Name of the event.

callback Callback<Titanium.Event>

Callback function to remove. Must be the same function passed to addEventListener.

Returns

Type
void

# systemImage

Availability
8.2.0
9.2.0
systemImage(name[, parameters]) → Titanium.Blob

Get image from SF Symbols provided by Apple.

More details on SF Symbols can be found here. One can download SF Symbols app from here and use it to lookup the built-in SF Symbol name.

Parameters

Name Type Description
name String

Name of SF Symbol.

parameters SystemImageParameters

Additional parameters to pass to the SF Symbol. Available in Titanium SDK 10.1.0 and later

Returns

# Constants

# ACTION_POLICY_ALLOW

Availability
8.0.0
9.2.0
ACTION_POLICY_ALLOW :Number

Allow the navigation to continue.

Use with invoke.


# ACTION_POLICY_CANCEL

Availability
8.0.0
9.2.0
ACTION_POLICY_CANCEL :Number

Cancel the navigation.

Use with invoke.


# ALERT_SEVERITY_CRITICAL

Availability
12.0.0
12.0.0
ALERT_SEVERITY_CRITICAL :Number

Indicates that the system should present the alert using the critical, or caution, style.

Use with <Titanium.UI.iOS.createAlertDialog> to specify the alert dialog severity on macOS Catalyst.


# ALERT_SEVERITY_DEFAULT

Availability
12.0.0
12.0.0
ALERT_SEVERITY_DEFAULT :Number

Indicates that the system should present the alert using the standard alert style.

Use with <Titanium.UI.iOS.createAlertDialog> to specify the alert dialog severity on macOS Catalyst.


# AUDIOVISUAL_MEDIA_TYPE_ALL

Availability
8.0.0
9.2.0
AUDIOVISUAL_MEDIA_TYPE_ALL :Number

All media types require a user gesture to begin playing.

Use with mediaTypesRequiringUserActionForPlayback


# AUDIOVISUAL_MEDIA_TYPE_AUDIO

Availability
8.0.0
9.2.0
AUDIOVISUAL_MEDIA_TYPE_AUDIO :Number

Media types containing audio require a user gesture to begin playing.

Use with mediaTypesRequiringUserActionForPlayback


# AUDIOVISUAL_MEDIA_TYPE_NONE

Availability
8.0.0
9.2.0
AUDIOVISUAL_MEDIA_TYPE_NONE :Number

No media types require a user gesture to begin playing.

Use with mediaTypesRequiringUserActionForPlayback


# AUDIOVISUAL_MEDIA_TYPE_VIDEO

Availability
8.0.0
9.2.0
AUDIOVISUAL_MEDIA_TYPE_VIDEO :Number

Media types containing video require a user gesture to begin playing.

Use with mediaTypesRequiringUserActionForPlayback


# BLUR_EFFECT_STYLE_DARK

Availability
5.4.0
9.2.0
BLUR_EFFECT_STYLE_DARK :Number

Use with effect to specify a blur effect.

Creates a blurring effect in the view. The area of the view is darker in hue than the underlying view.


# BLUR_EFFECT_STYLE_EXTRA_LIGHT

Availability
5.4.0
9.2.0
BLUR_EFFECT_STYLE_EXTRA_LIGHT :Number

Use with effect to specify a blur effect.

Creates a blurring effect in the view. The area of the view is lighter in hue than the underlying view.


# BLUR_EFFECT_STYLE_LIGHT

Availability
5.4.0
9.2.0
BLUR_EFFECT_STYLE_LIGHT :Number

Use with effect to specify a blur effect.

Creates a blurring effect in the view. The area of the view is the same approximate hue of the underlying view.


# BLUR_EFFECT_STYLE_PROMINENT

Availability
6.0.0
9.2.0
BLUR_EFFECT_STYLE_PROMINENT :Number

Use with effect to specify a blur effect.

Creates a blurring effect in the view. The area of the view is presented more prominent than the underlying view.


# BLUR_EFFECT_STYLE_REGULAR

Availability
6.0.0
9.2.0
BLUR_EFFECT_STYLE_REGULAR :Number

Use with effect to specify a blur effect.

Creates a blurring effect in the view. The blurring effect is the default one specified in iOS 10.


# BLUR_EFFECT_STYLE_SYSTEM_CHROME_MATERIAL

Availability
8.2.0
9.2.0
BLUR_EFFECT_STYLE_SYSTEM_CHROME_MATERIAL :Number

Use with effect to specify a blur effect.

Creates a blurring effect in the view. This is an adaptable blur effect that creates the appearance of the system chrome.


# BLUR_EFFECT_STYLE_SYSTEM_CHROME_MATERIAL_DARK

Availability
8.2.0
9.2.0
BLUR_EFFECT_STYLE_SYSTEM_CHROME_MATERIAL_DARK :Number

Use with effect to specify a blur effect.

Creates a blurring effect in the view. This blur effect creates the appearance of an ultra-thin material and is always dark.


# BLUR_EFFECT_STYLE_SYSTEM_CHROME_MATERIAL_LIGHT

Availability
8.2.0
9.2.0
BLUR_EFFECT_STYLE_SYSTEM_CHROME_MATERIAL_LIGHT :Number

Use with effect to specify a blur effect.

Creates a blurring effect in the view. This blur effect creates the appearance of the system chrome and is always light.


# BLUR_EFFECT_STYLE_SYSTEM_MATERIAL

Availability
8.2.0
9.2.0
BLUR_EFFECT_STYLE_SYSTEM_MATERIAL :Number

Use with effect to specify a blur effect.

Creates a blurring effect in the view. This is an adaptable blur effect that creates the appearance of a material with normal thickness.


# BLUR_EFFECT_STYLE_SYSTEM_MATERIAL_DARK

Availability
8.2.0
9.2.0
BLUR_EFFECT_STYLE_SYSTEM_MATERIAL_DARK :Number

Use with effect to specify a blur effect.

Creates a blurring effect in the view. This blur effect creates the appearance of a thin material and is always dark.


# BLUR_EFFECT_STYLE_SYSTEM_MATERIAL_LIGHT

Availability
8.2.0
9.2.0
BLUR_EFFECT_STYLE_SYSTEM_MATERIAL_LIGHT :Number

Use with effect to specify a blur effect.

Creates a blurring effect in the view. This blur effect creates the appearance of a material with normal thickness and is always light.


# BLUR_EFFECT_STYLE_SYSTEM_THICK_MATERIAL

Availability
8.2.0
9.2.0
BLUR_EFFECT_STYLE_SYSTEM_THICK_MATERIAL :Number

Use with effect to specify a blur effect.

Creates a blurring effect in the view. This is an adaptable blur effect that creates the appearance of a material that is thicker than normal.


# BLUR_EFFECT_STYLE_SYSTEM_THICK_MATERIAL_DARK

Availability
8.2.0
9.2.0
BLUR_EFFECT_STYLE_SYSTEM_THICK_MATERIAL_DARK :Number

Use with effect to specify a blur effect.

Creates a blurring effect in the view. This blur effect creates the appearance of a material with normal thickness and is always dark.


# BLUR_EFFECT_STYLE_SYSTEM_THICK_MATERIAL_LIGHT

Availability
8.2.0
9.2.0
BLUR_EFFECT_STYLE_SYSTEM_THICK_MATERIAL_LIGHT :Number

Use with effect to specify a blur effect.

Creates a blurring effect in the view. This blur effect creates the appearance of a material that is thicker than normal and is always light.


# BLUR_EFFECT_STYLE_SYSTEM_THIN_MATERIAL

Availability
8.2.0
9.2.0
BLUR_EFFECT_STYLE_SYSTEM_THIN_MATERIAL :Number

Use with effect to specify a blur effect.

Creates a blurring effect in the view. This is an adaptable blur effect that creates the appearance of a thin material.


# BLUR_EFFECT_STYLE_SYSTEM_THIN_MATERIAL_DARK

Availability
8.2.0
9.2.0
BLUR_EFFECT_STYLE_SYSTEM_THIN_MATERIAL_DARK :Number

Use with effect to specify a blur effect.

Creates a blurring effect in the view. This blur effect creates the appearance of a material that is thicker than normal and is always dark.


# BLUR_EFFECT_STYLE_SYSTEM_THIN_MATERIAL_LIGHT

Availability
8.2.0
9.2.0
BLUR_EFFECT_STYLE_SYSTEM_THIN_MATERIAL_LIGHT :Number

Use with effect to specify a blur effect.

Creates a blurring effect in the view. This blur effect creates the appearance of a thin material and is always light.


# BLUR_EFFECT_STYLE_SYSTEM_ULTRA_THIN_MATERIAL

Availability
8.2.0
9.2.0
BLUR_EFFECT_STYLE_SYSTEM_ULTRA_THIN_MATERIAL :Number

Use with effect to specify a blur effect.

Creates a blurring effect in the view. This is an adaptable blur effect that creates the appearance of a material with normal thickness.


# BLUR_EFFECT_STYLE_SYSTEM_ULTRA_THIN_MATERIAL_DARK

Availability
8.2.0
9.2.0
BLUR_EFFECT_STYLE_SYSTEM_ULTRA_THIN_MATERIAL_DARK :Number

Use with effect to specify a blur effect.

Creates a blurring effect in the view. This blur effect creates the appearance of the system chrome and is always dark.


# BLUR_EFFECT_STYLE_SYSTEM_ULTRA_THIN_MATERIAL_LIGHT

Availability
8.2.0
9.2.0
BLUR_EFFECT_STYLE_SYSTEM_ULTRA_THIN_MATERIAL_LIGHT :Number

Use with effect to specify a blur effect.

Creates a blurring effect in the view. This blur effect creates the appearance of an ultra-thin material and is always light.


# CACHE_POLICY_RELOAD_IGNORING_LOCAL_CACHE_DATA

Availability
8.0.0
9.2.0
CACHE_POLICY_RELOAD_IGNORING_LOCAL_CACHE_DATA :Number

Specifies that the data for the URL load should be loaded from the originating source. No existing cache data should be used to satisfy a URL load request.

Use with cachePolicy.


# CACHE_POLICY_RETURN_CACHE_DATA_DONT_LOAD

Availability
8.0.0
9.2.0
CACHE_POLICY_RETURN_CACHE_DATA_DONT_LOAD :Number

Specifies that the existing cache data should be used to satisfy a request, regardless of its age or expiration date.

Use with cachePolicy. If there is no existing data in the cache corresponding to a URL load request, no attempt is made to load the data from the originating source, and the load is considered to have failed. This constant specifies a behavior that is similar to an offline mode.


# CACHE_POLICY_RETURN_CACHE_DATA_ELSE_LOAD

Availability
8.0.0
9.2.0
CACHE_POLICY_RETURN_CACHE_DATA_ELSE_LOAD :Number

Specifies that the existing cached data should be used to satisfy the request, regardless of its age or expiration date.

Use with cachePolicy. If there is no existing data in the cache corresponding the request, the data is loaded from the originating source.


# CACHE_POLICY_USE_PROTOCOL_CACHE_POLICY

Availability
8.0.0
9.2.0
CACHE_POLICY_USE_PROTOCOL_CACHE_POLICY :Number

Specifies that the caching logic defined in the protocol implementation, if any, is used for a particular URL load request.

Use with cachePolicy. This is the default policy for URL load requests. If you are making HTTP or HTTPS byte-range requests, always use the CACHE_POLICY_RELOAD_IGNORING_LOCAL_CACHE_DATA policy.


# CLIP_MODE_DEFAULT

Availability
3.3.0
9.2.0
CLIP_MODE_DEFAULT :Number

Use with clipMode to specify clipping behavior.


# CLIP_MODE_DISABLED

Availability
3.3.0
9.2.0
CLIP_MODE_DISABLED :Number

Use with clipMode to specify clipping behavior.


# CLIP_MODE_ENABLED

Availability
3.3.0
9.2.0
CLIP_MODE_ENABLED :Number

Use with clipMode to specify clipping behavior.


# COLLISION_MODE_ALL

Availability
3.2.0
9.2.0
COLLISION_MODE_ALL :Number

Use with collisionMode to specify collisions with both items and boundaries.


# COLLISION_MODE_BOUNDARY

Availability
3.2.0
9.2.0
COLLISION_MODE_BOUNDARY :Number

Use with collisionMode to specify collisions with boundaries only.


# COLLISION_MODE_ITEM

Availability
3.2.0
9.2.0
COLLISION_MODE_ITEM :Number

Use with collisionMode to specify collisions with items only.


# CREDENTIAL_PERSISTENCE_FOR_SESSION

Availability
8.0.0
9.2.0
CREDENTIAL_PERSISTENCE_FOR_SESSION :Number

Credential should be stored only for this session.

Used with the persistence argument of setBasicAuthentication to set the persistence level.


# CREDENTIAL_PERSISTENCE_NONE

Availability
8.0.0
9.2.0
CREDENTIAL_PERSISTENCE_NONE :Number

Credential should not be stored.

Used with the persistence argument of setBasicAuthentication to set the persistence level.


# CREDENTIAL_PERSISTENCE_PERMANENT

Availability
8.0.0
9.2.0
CREDENTIAL_PERSISTENCE_PERMANENT :Number

Credential should be stored in the keychain.

Used with the persistence argument of setBasicAuthentication to set the persistence level.


# CREDENTIAL_PERSISTENCE_SYNCHRONIZABLE

Availability
8.0.0
9.2.0
CREDENTIAL_PERSISTENCE_SYNCHRONIZABLE :Number

Credential should be stored permanently in the keychain, and in addition should be distributed to other devices based on the owning AppleID.

Used with the persistence argument of setBasicAuthentication to set the persistence level.


# DATE_PICKER_STYLE_AUTOMATIC DEPRECATED

Availability
9.2.0
9.2.0
DATE_PICKER_STYLE_AUTOMATIC :Number

DEPRECATED SINCE 10.0.1

Use DATE_PICKER_STYLE_AUTOMATIC instead.

Use with datePickerStyle to automatically pick the best style available for the current platform & mode.

Note: Prior to iOS 14, this property is only used on iOS Catalyst apps.


# DATE_PICKER_STYLE_COMPACT DEPRECATED

Availability
9.2.0
9.2.0
DATE_PICKER_STYLE_COMPACT :Number

DEPRECATED SINCE 10.0.1

Use DATE_PICKER_STYLE_COMPACT instead.

Use with datePickerStyle to show the picker with a compact style. Editing occurs in an overlay.

Note: Prior to iOS 14, this property is only used on iOS Catalyst apps.


# DATE_PICKER_STYLE_INLINE DEPRECATED

Availability
9.2.0
9.2.0
DATE_PICKER_STYLE_INLINE :Number

DEPRECATED SINCE 10.0.1

Use DATE_PICKER_STYLE_INLINE instead.

Use with datePickerStyle to allow editing in place (as a calendar).


# DATE_PICKER_STYLE_WHEELS DEPRECATED

Availability
9.2.0
9.2.0
DATE_PICKER_STYLE_WHEELS :Number

DEPRECATED SINCE 10.0.1

Use DATE_PICKER_STYLE_WHEELS instead.

Use with datePickerStyle to show the picker the wheels. Editing occurs inline.


# FEEDBACK_GENERATOR_IMPACT_STYLE_HEAVY

Availability
6.0.0
9.2.0
FEEDBACK_GENERATOR_IMPACT_STYLE_HEAVY :Number

The heavy impact style used as the style argument when creating a Titanium.UI.iOS.FeedbackGenerator with the type FEEDBACK_GENERATOR_TYPE_IMPACT.


# FEEDBACK_GENERATOR_IMPACT_STYLE_LIGHT

Availability
6.0.0
9.2.0
FEEDBACK_GENERATOR_IMPACT_STYLE_LIGHT :Number

The light impact style used as the style argument when creating a Titanium.UI.iOS.FeedbackGenerator with the type FEEDBACK_GENERATOR_TYPE_IMPACT.


# FEEDBACK_GENERATOR_IMPACT_STYLE_MEDIUM

Availability
6.0.0
9.2.0
FEEDBACK_GENERATOR_IMPACT_STYLE_MEDIUM :Number

The medium impact style used as the style argument when creating a Titanium.UI.iOS.FeedbackGenerator with the type FEEDBACK_GENERATOR_TYPE_IMPACT.


# FEEDBACK_GENERATOR_NOTIFICATION_TYPE_ERROR

Availability
6.0.0
9.2.0
FEEDBACK_GENERATOR_NOTIFICATION_TYPE_ERROR :Number

The error notification type used as the argument in notificationOccurred.


# FEEDBACK_GENERATOR_NOTIFICATION_TYPE_SUCCESS

Availability
6.0.0
9.2.0
FEEDBACK_GENERATOR_NOTIFICATION_TYPE_SUCCESS :Number

The success notification type used as the argument in notificationOccurred.


# FEEDBACK_GENERATOR_NOTIFICATION_TYPE_WARNING

Availability
6.0.0
9.2.0
FEEDBACK_GENERATOR_NOTIFICATION_TYPE_WARNING :Number

The warning notification type used as the argument in notificationOccurred.


# FEEDBACK_GENERATOR_TYPE_IMPACT

Availability
6.0.0
9.2.0
FEEDBACK_GENERATOR_TYPE_IMPACT :Number

The feedback type to be used when specifying an impact in Titanium.UI.iOS.FeedbackGenerator.


# FEEDBACK_GENERATOR_TYPE_NOTIFICATION

Availability
6.0.0
9.2.0
FEEDBACK_GENERATOR_TYPE_NOTIFICATION :Number

The feedback type to be used when specifying a received notification in Titanium.UI.iOS.FeedbackGenerator.


# FEEDBACK_GENERATOR_TYPE_SELECTION

Availability
6.0.0
9.2.0
FEEDBACK_GENERATOR_TYPE_SELECTION :Number

The feedback type to be used when specifying a selection in Titanium.UI.iOS.FeedbackGenerator.


# INJECTION_TIME_DOCUMENT_END

Availability
8.0.0
9.2.0
INJECTION_TIME_DOCUMENT_END :Number

Inject the script after the document finishes loading, but before other subresources finish loading.

Used to set the injectionTime argument of addUserScript.


# INJECTION_TIME_DOCUMENT_START

Availability
8.0.0
9.2.0
INJECTION_TIME_DOCUMENT_START :Number

Inject the script after the document element is created, but before any other content is loaded.

Used to set the injectionTime argument of addUserScript.


# KEYBOARD_DISMISS_MODE_INTERACTIVE

Availability
6.0.0
9.2.0
KEYBOARD_DISMISS_MODE_INTERACTIVE :Number

Use with keyboardDismissMode to control keyboard dismiss mode.

The keyboard follows the dragging touch offscreen, and can be pulled upward again to cancel the dismiss.


# KEYBOARD_DISMISS_MODE_NONE

Availability
6.0.0
9.2.0
KEYBOARD_DISMISS_MODE_NONE :Number

Use with keyboardDismissMode to control keyboard dismiss mode.

The keyboard does not get dismissed with a drag.


# KEYBOARD_DISMISS_MODE_ON_DRAG

Availability
6.0.0
9.2.0
KEYBOARD_DISMISS_MODE_ON_DRAG :Number

Use with keyboardDismissMode to control keyboard dismiss mode.

The keyboard is dismissed when a drag begins.


# LARGE_TITLE_DISPLAY_MODE_ALWAYS

Availability
6.3.0
9.2.0
LARGE_TITLE_DISPLAY_MODE_ALWAYS :Number

Always use a larger title when this item is top most.

Use with largeTitleDisplayMode.


# LARGE_TITLE_DISPLAY_MODE_AUTOMATIC

Availability
6.3.0
9.2.0
LARGE_TITLE_DISPLAY_MODE_AUTOMATIC :Number

Automatically use the large out-of-line title based on the state of the p revious item in the navigation bar.

Use with largeTitleDisplayMode. An item with this constant will show or hide the large title based on the request of the previous navigation item. If the first item pushed is set to Automatic, then it will show the large title if the navigation bar has the property largeTitleEnabled set to true.


# LARGE_TITLE_DISPLAY_MODE_NEVER

Availability
6.3.0
9.2.0
LARGE_TITLE_DISPLAY_MODE_NEVER :Number

Never use a larger title when this item is top most.

Use with largeTitleDisplayMode.


# LIVEPHOTO_BADGE_OPTIONS_LIVE_OFF

Availability
5.2.0
9.2.0
LIVEPHOTO_BADGE_OPTIONS_LIVE_OFF :Number

To indicate that the Live Photo aspect is turned off and it will be treated as a still (e.g. for sharing).

Use with createLivePhotoBadge to specify the badge behavior.


# LIVEPHOTO_BADGE_OPTIONS_OVER_CONTENT

Availability
5.2.0
9.2.0
LIVEPHOTO_BADGE_OPTIONS_OVER_CONTENT :Number

Include treatments so this image can be shown directly over the content of the Live Photo.

Use with createLivePhotoBadge to specify the badge behavior.


# LIVEPHOTO_PLAYBACK_STYLE_FULL

Availability
5.2.0
9.2.0
LIVEPHOTO_PLAYBACK_STYLE_FULL :Number

Plays back the entire motion and sound content of the Live Photo, including transition effects at the start and end.

This style matches the effect seen when pressing on a photo in the Photos app.


# LIVEPHOTO_PLAYBACK_STYLE_HINT

Availability
5.2.0
9.2.0
LIVEPHOTO_PLAYBACK_STYLE_HINT :Number

Plays back only a brief section of the motion content of the Live Photo, without sound.

This style matches the effect seen in various iOS interface elements for hinting to the user when an asset contains Live Photo content.


Availability
1.4.0
9.2.0
MENU_POPUP_ARROW_DIRECTION_DEFAULT :Number

An arrow that is automatically aligned.


Availability
1.4.0
9.2.0
MENU_POPUP_ARROW_DIRECTION_DOWN :Number

An arrow that points downward.


Availability
1.4.0
9.2.0
MENU_POPUP_ARROW_DIRECTION_LEFT :Number

An arrow that points toward the left.


Availability
1.4.0
9.2.0
MENU_POPUP_ARROW_DIRECTION_RIGHT :Number

An arrow that points toward the right.


Availability
1.4.0
9.2.0
MENU_POPUP_ARROW_DIRECTION_UP :Number

An arrow that points upward.


Availability
5.4.0
9.2.0
MODAL_PRESENTATION_CURRENT_CONTEXT :Number

View presented with the same style as its parent window.

Used with the open and close methods.

One of the group of modal window presentation style constants MODAL_PRESENTATION_OVER_CURRENT_FULL_SCREEN, MODAL_PRESENTATION_OVER_CURRENT_CONTEXT, MODAL_PRESENTATION_CURRENT_CONTEXT, MODAL_PRESENTATION_FORMSHEET, MODAL_PRESENTATION_FULLSCREEN, and MODAL_PRESENTATION_PAGESHEET.


Availability
5.4.0
9.2.0
MODAL_PRESENTATION_FORMSHEET :Number

Window width and height are smaller than those of the screen and the view is centered on the screen.

If the system is in a landscape orientation and the keyboard is visible, the position of the view is adjusted upward so that the view remains visible. All uncovered areas are dimmed and do not respond to touch to prevent the user from interacting with them.

Used with the open and close methods.

One of the group of modal window presentation style constants MODAL_PRESENTATION_OVER_CURRENT_FULL_SCREEN, MODAL_PRESENTATION_OVER_CURRENT_CONTEXT, MODAL_PRESENTATION_CURRENT_CONTEXT, MODAL_PRESENTATION_FORMSHEET, MODAL_PRESENTATION_FULLSCREEN, and MODAL_PRESENTATION_PAGESHEET.


Availability
5.4.0
9.2.0
MODAL_PRESENTATION_FULLSCREEN :Number

Window covers the screen.

Used with the open and close methods.

One of the group of modal window presentation style constants MODAL_PRESENTATION_OVER_CURRENT_FULL_SCREEN, MODAL_PRESENTATION_OVER_CURRENT_CONTEXT, MODAL_PRESENTATION_CURRENT_CONTEXT, MODAL_PRESENTATION_FORMSHEET, MODAL_PRESENTATION_FULLSCREEN, and MODAL_PRESENTATION_PAGESHEET.


Availability
7.3.0
9.2.0
MODAL_PRESENTATION_OVER_CURRENT_CONTEXT :Number

View presented over its parent window.

Used with the open and close methods.

One of the group of modal window presentation style constants MODAL_PRESENTATION_OVER_CURRENT_FULL_SCREEN, MODAL_PRESENTATION_OVER_CURRENT_CONTEXT, MODAL_PRESENTATION_CURRENT_CONTEXT, MODAL_PRESENTATION_FORMSHEET, MODAL_PRESENTATION_FULLSCREEN, and MODAL_PRESENTATION_PAGESHEET.


Availability
7.3.0
9.2.0
MODAL_PRESENTATION_OVER_CURRENT_FULL_SCREEN :Number

Presented view covers the screen.

The views beneath the presented content are not removed from the view hierarchy when the presentation finishes. So if the presented view controller does not fill the screen with opaque content, the underlying content shows through.

Used with the open and close methods.

One of the group of modal window presentation style constants MODAL_PRESENTATION_OVER_CURRENT_FULL_SCREEN, MODAL_PRESENTATION_OVER_CURRENT_CONTEXT, MODAL_PRESENTATION_CURRENT_CONTEXT, MODAL_PRESENTATION_FORMSHEET, MODAL_PRESENTATION_FULLSCREEN, and MODAL_PRESENTATION_PAGESHEET.


Availability
5.4.0
9.2.0
MODAL_PRESENTATION_PAGESHEET :Number

Window height is the height of the screen and width is equal to screen width in a portrait orientation.

Any uncovered areas are dimmed and do not respond to touch, to prevent the user from interacting with them. In portrait orientations, this option is essentially the same as MODAL_PRESENTATION_FULLSCREEN.

Used with the open and close methods.

One of the group of modal window presentation style constants MODAL_PRESENTATION_OVER_CURRENT_FULL_SCREEN, MODAL_PRESENTATION_OVER_CURRENT_CONTEXT, MODAL_PRESENTATION_CURRENT_CONTEXT, MODAL_PRESENTATION_FORMSHEET, MODAL_PRESENTATION_FULLSCREEN, and MODAL_PRESENTATION_PAGESHEET.


Availability
5.4.0
9.2.0
MODAL_TRANSITION_STYLE_COVER_VERTICAL :Number

When the window is presented, its view slides up from the bottom of the screen. On dismissal, the view slides back down (default.)

Used with the open and close methods.

One of the group of modal window transition style constants MODAL_TRANSITION_STYLE_COVER_VERTICAL, MODAL_TRANSITION_STYLE_CROSS_DISSOLVE, MODAL_TRANSITION_STYLE_FLIP_HORIZONTAL, and MODAL_TRANSITION_STYLE_PARTIAL_CURL.


Availability
5.4.0
9.2.0
MODAL_TRANSITION_STYLE_CROSS_DISSOLVE :Number

When the window is presented, the current view fades out while the new view fades in at the same time. On dismissal, a similar type of cross-fade is used to return to the original view.

Used with the open and close methods.

One of the group of modal window transition style constants MODAL_TRANSITION_STYLE_COVER_VERTICAL, MODAL_TRANSITION_STYLE_CROSS_DISSOLVE, MODAL_TRANSITION_STYLE_FLIP_HORIZONTAL, and MODAL_TRANSITION_STYLE_PARTIAL_CURL.


Availability
5.4.0
9.2.0
MODAL_TRANSITION_STYLE_FLIP_HORIZONTAL :Number

When the window is presented, the current view initiates a horizontal 3D flip from right-to-left, resulting in the revealing of the new view as if it were on the back of the previous view. On dismissal, the flip occurs from left-to-right, returning to the original view.

Used with the open and close methods.

One of the group of modal window transition style constants MODAL_TRANSITION_STYLE_COVER_VERTICAL, MODAL_TRANSITION_STYLE_CROSS_DISSOLVE, MODAL_TRANSITION_STYLE_FLIP_HORIZONTAL, and MODAL_TRANSITION_STYLE_PARTIAL_CURL.


Availability
5.4.0
9.2.0
MODAL_TRANSITION_STYLE_PARTIAL_CURL :Number

When the window is presented, one corner of the current view curls up to reveal the modal view underneath. On dismissal, the curled up page unfurls itself back on top of the modal view.

A modal view presented using this transition is itself prevented from presenting any additional modal views. This transition style is supported only if the window is presenting a MODAL_PRESENTATION_FULLSCREEN modal presentation style.

Used with the open and close methods.

One of the group of modal window transition style constants MODAL_TRANSITION_STYLE_COVER_VERTICAL, MODAL_TRANSITION_STYLE_CROSS_DISSOLVE, MODAL_TRANSITION_STYLE_FLIP_HORIZONTAL, and MODAL_TRANSITION_STYLE_PARTIAL_CURL.


# PREVIEW_ACTION_STYLE_DEFAULT

Availability
5.1.0
9.2.0
PREVIEW_ACTION_STYLE_DEFAULT :Number

The normal style for preview actions.

Used in conjunction with style / style property.


# PREVIEW_ACTION_STYLE_DESTRUCTIVE

Availability
5.1.0
9.2.0
PREVIEW_ACTION_STYLE_DESTRUCTIVE :Number

The destructive style for preview actions.

Used in conjunction with style / style property.


# PREVIEW_ACTION_STYLE_SELECTED

Availability
5.1.0
9.2.0
PREVIEW_ACTION_STYLE_SELECTED :Number

The selected style for preview actions.

Used in conjunction with style / style property.


# PUSH_MODE_CONTINUOUS

Availability
3.2.0
9.2.0
PUSH_MODE_CONTINUOUS :Number

Use with pushMode to specifiy a continuous force.


# PUSH_MODE_INSTANTANEOUS

Availability
3.2.0
9.2.0
PUSH_MODE_INSTANTANEOUS :Number

Use with pushMode to specifiy an instantaneous force.


# ROW_ACTION_STYLE_DEFAULT

Availability
4.1.0
9.2.0
ROW_ACTION_STYLE_DEFAULT :Number

The default style for RowActionType.

Used in conjunction with editActions property and editaction event.


# ROW_ACTION_STYLE_DESTRUCTIVE

Availability
4.1.0
9.2.0
ROW_ACTION_STYLE_DESTRUCTIVE :Number

The destructive style for RowActionType.

Used in conjunction with editActions property and editaction event.


# ROW_ACTION_STYLE_NORMAL

Availability
4.1.0
9.2.0
ROW_ACTION_STYLE_NORMAL :Number

The normal style for RowActionType.

Used in conjunction with editActions property and editaction event.


# SCROLL_DECELERATION_RATE_FAST

Availability
3.2.3
9.2.0
SCROLL_DECELERATION_RATE_FAST :Number

Use with decelerationRate to control deceleration rate.


# SCROLL_DECELERATION_RATE_NORMAL

Availability
3.2.3
9.2.0
SCROLL_DECELERATION_RATE_NORMAL :Number

Use with decelerationRate to control deceleration rate.


# SEARCH_BAR_STYLE_MINIMAL

Availability
5.4.0
9.2.0
SEARCH_BAR_STYLE_MINIMAL :Number

Use with style to change the search bar style.

The search bar has no background, and the search field is translucent.


# SEARCH_BAR_STYLE_PROMINENT

Availability
5.4.0
9.2.0
SEARCH_BAR_STYLE_PROMINENT :Number

Use with style to change the search bar style.

The search bar has a translucent background, and the search field is opaque.


# SELECTION_GRANULARITY_CHARACTER

Availability
8.0.0
9.2.0
SELECTION_GRANULARITY_CHARACTER :Number

Selection endpoints can be placed at any character boundary.

Use with selectionGranularity.


# SELECTION_GRANULARITY_DYNAMIC

Availability
8.0.0
9.2.0
SELECTION_GRANULARITY_DYNAMIC :Number

Selection granularity varies automatically depending on the selection.

Use with selectionGranularity.


# SHORTCUT_ICON_TYPE_ADD

Availability
5.1.0
9.2.0
SHORTCUT_ICON_TYPE_ADD :Number

Number that represents the icon used for the application shortcut

An icon for a quick action that adds an item.


# SHORTCUT_ICON_TYPE_ALARM

Availability
5.1.0
9.2.0
SHORTCUT_ICON_TYPE_ALARM :Number

Number that represents the icon used for the application shortcut

An icon for a quick action that offers creation of an alarm.


# SHORTCUT_ICON_TYPE_AUDIO

Availability
5.1.0
9.2.0
SHORTCUT_ICON_TYPE_AUDIO :Number

Number that represents the icon used for the application shortcut

An icon for a quick action that offers use of audio.


# SHORTCUT_ICON_TYPE_BOOKMARK

Availability
5.1.0
9.2.0
SHORTCUT_ICON_TYPE_BOOKMARK :Number

Number that represents the icon used for the application shortcut

An icon for a quick action that offers creation of a bookmark.


# SHORTCUT_ICON_TYPE_CAPTURE_PHOTO

Availability
5.1.0
9.2.0
SHORTCUT_ICON_TYPE_CAPTURE_PHOTO :Number

Number that represents the icon used for the application shortcut

An icon for a quick action that offers photo capture.


# SHORTCUT_ICON_TYPE_CAPTURE_VIDEO

Availability
5.1.0
9.2.0
SHORTCUT_ICON_TYPE_CAPTURE_VIDEO :Number

Number that represents the icon used for the application shortcut

An icon for a quick action that offers video capture.


# SHORTCUT_ICON_TYPE_CLOUD

Availability
5.1.0
9.2.0
SHORTCUT_ICON_TYPE_CLOUD :Number

Number that represents the icon used for the application shortcut

An icon for a quick action that offers cloud access.


# SHORTCUT_ICON_TYPE_COMPOSE

Availability
5.1.0
9.2.0
SHORTCUT_ICON_TYPE_COMPOSE :Number

Number that represents the icon used for the application shortcut

An icon for a quick action that lets a user compose new content.


# SHORTCUT_ICON_TYPE_CONFIRMATION

Availability
5.1.0
9.2.0
SHORTCUT_ICON_TYPE_CONFIRMATION :Number

Number that represents the icon used for the application shortcut

An icon for a quick action that indicates confirmation.


# SHORTCUT_ICON_TYPE_CONTACT

Availability
5.1.0
9.2.0
SHORTCUT_ICON_TYPE_CONTACT :Number

Number that represents the icon used for the application shortcut

An icon for a quick action that chooses a generic contact.


# SHORTCUT_ICON_TYPE_DATE

Availability
5.1.0
9.2.0
SHORTCUT_ICON_TYPE_DATE :Number

Number that represents the icon used for the application shortcut

An icon for a quick action that offers use of a calendar.


# SHORTCUT_ICON_TYPE_FAVORITE

Availability
5.1.0
9.2.0
SHORTCUT_ICON_TYPE_FAVORITE :Number

Number that represents the icon used for the application shortcut

An icon for a quick action that lets a user designate a favorite item.


# SHORTCUT_ICON_TYPE_HOME

Availability
5.1.0
9.2.0
SHORTCUT_ICON_TYPE_HOME :Number

Number that represents the icon used for the application shortcut

An icon for a quick action that indicates home.


# SHORTCUT_ICON_TYPE_INVITATION

Availability
5.1.0
9.2.0
SHORTCUT_ICON_TYPE_INVITATION :Number

Number that represents the icon used for the application shortcut

An icon for a quick action that indicates an invitation.


# SHORTCUT_ICON_TYPE_LOCATION

Availability
5.1.0
9.2.0
SHORTCUT_ICON_TYPE_LOCATION :Number

Number that represents the icon used for the application shortcut

Will cause a magnifying glass icon to be displayed at that location in the index. This should generally only be used as the first title in the index.


# SHORTCUT_ICON_TYPE_LOVE

Availability
5.1.0
9.2.0
SHORTCUT_ICON_TYPE_LOVE :Number

Number that represents the icon used for the application shortcut

An icon for a quick action that lets a user designate a loved item.


# SHORTCUT_ICON_TYPE_MAIL

Availability
5.1.0
9.2.0
SHORTCUT_ICON_TYPE_MAIL :Number

Number that represents the icon used for the application shortcut

An icon for a quick action that offers use of mail.


# SHORTCUT_ICON_TYPE_MARK_LOCATION

Availability
5.1.0
9.2.0
SHORTCUT_ICON_TYPE_MARK_LOCATION :Number

Number that represents the icon used for the application shortcut

An icon for a quick action that lets a user mark a location.


# SHORTCUT_ICON_TYPE_MESSAGE

Availability
5.1.0
9.2.0
SHORTCUT_ICON_TYPE_MESSAGE :Number

Number that represents the icon used for the application shortcut

An icon for a quick action that offers use of messaging.


# SHORTCUT_ICON_TYPE_PAUSE

Availability
5.1.0
9.2.0
SHORTCUT_ICON_TYPE_PAUSE :Number

Number that represents the icon used for the application shortcut

An icon for a quick action that pauses media playback.


# SHORTCUT_ICON_TYPE_PLAY

Availability
5.1.0
9.2.0
SHORTCUT_ICON_TYPE_PLAY :Number

Number that represents the icon used for the application shortcut

An icon for a quick action that plays media.


# SHORTCUT_ICON_TYPE_PROHIBIT

Availability
5.1.0
9.2.0
SHORTCUT_ICON_TYPE_PROHIBIT :Number

Number that represents the icon used for the application shortcut

An icon for a quick action that disallows something.


Availability
5.1.0
9.2.0
SHORTCUT_ICON_TYPE_SEARCH :Number

Number that represents the icon used for the application shortcut

An icon for a quick action that accesses the user's current location.


# SHORTCUT_ICON_TYPE_SHARE

Availability
5.1.0
9.2.0
SHORTCUT_ICON_TYPE_SHARE :Number

Number that represents the icon used for the application shortcut

An icon for a quick action that offers content sharing.


# SHORTCUT_ICON_TYPE_SHUFFLE

Availability
5.1.0
9.2.0
SHORTCUT_ICON_TYPE_SHUFFLE :Number

Number that represents the icon used for the application shortcut

An icon for a quick action that offers shuffle mode.


# SHORTCUT_ICON_TYPE_TASK

Availability
5.1.0
9.2.0
SHORTCUT_ICON_TYPE_TASK :Number

Number that represents the icon used for the application shortcut

An icon for a quick action that offers task creation.


# SHORTCUT_ICON_TYPE_TASK_COMPLETED

Availability
5.1.0
9.2.0
SHORTCUT_ICON_TYPE_TASK_COMPLETED :Number

Number that represents the icon used for the application shortcut

An icon for a quick action that offers task completion.


# SHORTCUT_ICON_TYPE_TIME

Availability
5.1.0
9.2.0
SHORTCUT_ICON_TYPE_TIME :Number

Number that represents the icon used for the application shortcut

An icon for a quick action that offers use of a clock or timer.


# SHORTCUT_ICON_TYPE_UPDATE

Availability
5.1.0
9.2.0
SHORTCUT_ICON_TYPE_UPDATE :Number

Number that represents the icon used for the application shortcut

An icon for a quick action that offers updating.


Availability
3.4.0
9.2.0
TABLEVIEW_INDEX_SEARCH :String

String that represents the magnifying glass on the table view index bar

Will cause a magnifying glass icon to be displayed at that location in the index. This should generally only be used as the first title in the index.