@maccesar/titools 3.3.0 → 4.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (101) hide show
  1. package/README.md +27 -61
  2. package/lib/cleanup.js +29 -0
  3. package/lib/commands/agents.js +8 -7
  4. package/lib/commands/skills.js +118 -23
  5. package/lib/config.js +13 -15
  6. package/lib/installer.js +5 -3
  7. package/lib/utils.js +36 -0
  8. package/package.json +1 -1
  9. package/skills/alloy-guides/SKILL.md +188 -0
  10. package/skills/alloy-guides/references/CLI_TASKS.md +233 -0
  11. package/skills/alloy-guides/references/CONCEPTS.md +171 -0
  12. package/skills/alloy-guides/references/CONTROLLERS.md +279 -0
  13. package/skills/alloy-guides/references/MODELS.md +742 -0
  14. package/skills/alloy-guides/references/MODELS_ADVANCED.md +482 -0
  15. package/skills/alloy-guides/references/PURGETSS.md +57 -0
  16. package/skills/alloy-guides/references/VIEWS_DYNAMIC.md +235 -0
  17. package/skills/alloy-guides/references/VIEWS_STYLES.md +375 -0
  18. package/skills/alloy-guides/references/VIEWS_WITHOUT_CONTROLLERS.md +102 -0
  19. package/skills/alloy-guides/references/VIEWS_XML.md +581 -0
  20. package/skills/alloy-guides/references/WIDGETS.md +160 -0
  21. package/skills/alloy-howtos/SKILL.md +179 -0
  22. package/skills/alloy-howtos/references/best_practices.md +121 -0
  23. package/skills/alloy-howtos/references/cli_reference.md +230 -0
  24. package/skills/alloy-howtos/references/config_files.md +158 -0
  25. package/skills/alloy-howtos/references/custom_tags.md +148 -0
  26. package/skills/alloy-howtos/references/debugging_troubleshooting.md +78 -0
  27. package/skills/alloy-howtos/references/samples.md +156 -0
  28. package/skills/purgetss/SKILL.md +6 -3
  29. package/skills/purgetss/references/EXAMPLES.md +8 -6
  30. package/skills/purgetss/references/app-branding.md +5 -0
  31. package/skills/purgetss/references/apply-directive.md +1 -1
  32. package/skills/purgetss/references/class-categories.md +1 -1
  33. package/skills/purgetss/references/class-index-properties.md +618 -0
  34. package/skills/purgetss/references/class-index.md +4 -610
  35. package/skills/purgetss/references/cli-commands.md +15 -0
  36. package/skills/purgetss/references/custom-fonts.md +39 -36
  37. package/skills/purgetss/references/custom-rules.md +1 -1
  38. package/skills/purgetss/references/customization-deep-dive.md +64 -1
  39. package/skills/purgetss/references/icon-fonts.md +2 -0
  40. package/skills/purgetss/references/migration-guide.md +53 -1
  41. package/skills/purgetss/references/multi-density-images.md +53 -2
  42. package/skills/purgetss/references/svg-pipeline.md +249 -0
  43. package/skills/purgetss/references/tikit-components.md +2 -2
  44. package/skills/purgetss/references/titanium-resets.md +2 -2
  45. package/skills/purgetss/references/ui-ux-design.md +7 -5
  46. package/skills/purgetss/references/version-history.md +12 -0
  47. package/skills/ti-api/SKILL.md +128 -0
  48. package/skills/ti-api/references/api-android.md +675 -0
  49. package/skills/ti-api/references/api-app-platform.md +636 -0
  50. package/skills/ti-api/references/api-core.md +764 -0
  51. package/skills/ti-api/references/api-data-network.md +641 -0
  52. package/skills/ti-api/references/api-media.md +655 -0
  53. package/skills/ti-api/references/api-modules-ble-bluetooth.md +657 -0
  54. package/skills/ti-api/references/api-modules-coremotion-urlsession.md +411 -0
  55. package/skills/ti-api/references/api-modules-map.md +632 -0
  56. package/skills/ti-api/references/api-modules-nfc.md +725 -0
  57. package/skills/ti-api/references/api-modules-social-misc.md +526 -0
  58. package/skills/ti-api/references/api-services.md +700 -0
  59. package/skills/ti-api/references/api-ui-android.md +499 -0
  60. package/skills/ti-api/references/api-ui-extras.md +702 -0
  61. package/skills/ti-api/references/api-ui-ios-animator.md +378 -0
  62. package/skills/ti-api/references/api-ui-ios.md +756 -0
  63. package/skills/ti-api/references/api-ui-lists.md +581 -0
  64. package/skills/ti-api/references/api-ui-text-input.md +607 -0
  65. package/skills/ti-api/references/api-ui-views.md +572 -0
  66. package/skills/ti-api/references/api-ui-windows-navigation.md +676 -0
  67. package/skills/ti-api/references/api-xml-global.md +743 -0
  68. package/skills/ti-guides/SKILL.md +82 -0
  69. package/skills/ti-guides/references/advanced-data-and-images.md +155 -0
  70. package/skills/ti-guides/references/android-manifest.md +97 -0
  71. package/skills/ti-guides/references/app-distribution.md +373 -0
  72. package/skills/ti-guides/references/application-frameworks.md +366 -0
  73. package/skills/ti-guides/references/cli-reference.md +700 -0
  74. package/skills/ti-guides/references/coding-best-practices.md +150 -0
  75. package/skills/ti-guides/references/commonjs-advanced.md +279 -0
  76. package/skills/ti-guides/references/hello-world.md +99 -0
  77. package/skills/ti-guides/references/hyperloop-native-access.md +458 -0
  78. package/skills/ti-guides/references/javascript-primer.md +402 -0
  79. package/skills/ti-guides/references/reserved-words.md +36 -0
  80. package/skills/ti-guides/references/resources.md +172 -0
  81. package/skills/ti-guides/references/style-and-conventions.md +104 -0
  82. package/skills/ti-guides/references/tiapp-config.md +655 -0
  83. package/skills/ti-howtos/SKILL.md +131 -0
  84. package/skills/ti-howtos/references/android-platform-deep-dives.md +609 -0
  85. package/skills/ti-howtos/references/automation-fastlane-appium.md +96 -0
  86. package/skills/ti-howtos/references/buffer-codec-streams.md +162 -0
  87. package/skills/ti-howtos/references/cross-platform-development.md +358 -0
  88. package/skills/ti-howtos/references/debugging-profiling.md +473 -0
  89. package/skills/ti-howtos/references/extending-titanium.md +684 -0
  90. package/skills/ti-howtos/references/google-maps-v2.md +172 -0
  91. package/skills/ti-howtos/references/ios-map-kit.md +149 -0
  92. package/skills/ti-howtos/references/ios-platform-deep-dives.md +595 -0
  93. package/skills/ti-howtos/references/local-data-sources.md +310 -0
  94. package/skills/ti-howtos/references/location-and-maps.md +267 -0
  95. package/skills/ti-howtos/references/media-apis.md +268 -0
  96. package/skills/ti-howtos/references/notification-services.md +539 -0
  97. package/skills/ti-howtos/references/remote-data-sources.md +339 -0
  98. package/skills/ti-howtos/references/tutorials.md +552 -0
  99. package/skills/ti-howtos/references/using-modules.md +182 -0
  100. package/skills/ti-howtos/references/web-content-integration.md +288 -0
  101. package/skills/ti-howtos/references/webpack-build-pipeline.md +125 -0
@@ -0,0 +1,756 @@
1
+ # Ti.UI.iOS API Reference
2
+
3
+ ## Ti.UI.iOS
4
+ > Apple iOS specific UI capabilities. All properties, methods and events in this namespace will only work on Apple iOS devices.
5
+ > Extends Ti.Module
6
+ > Platforms: ios
7
+ > Type: module
8
+
9
+ ### Properties (unique: 4/141)
10
+ | Property | Type | Platform | Description |
11
+ |----------|------|----------|-------------|
12
+ | forceTouchSupported | Boolean | ios | Determines if the 3D-Touch capability "Force Touc… |
13
+ | appBadge | Number | ios | Value of the badge for the application's springbo… |
14
+ | appSupportsShakeToEdit | Boolean | ios | Determines whether the shake to edit system-wide … |
15
+ | statusBarBackgroundColor | String \| Ti.UI.Color | ios | Sets the global status bar background color for t… |
16
+
17
+ ### Constants (135)
18
+ - **ACTION_POLICY_\***: ACTION_POLICY_CANCEL, ACTION_POLICY_ALLOW
19
+ - **ALERT_SEVERITY_\***: ALERT_SEVERITY_DEFAULT, ALERT_SEVERITY_CRITICAL
20
+ - **AUDIOVISUAL_MEDIA_TYPE_\***: AUDIOVISUAL_MEDIA_TYPE_NONE, AUDIOVISUAL_MEDIA_TYPE_AUDIO, AUDIOVISUAL_MEDIA_TYPE_VIDEO, AUDIOVISUAL_MEDIA_TYPE_ALL
21
+ - **BLUR_EFFECT_STYLE_\***: BLUR_EFFECT_STYLE_LIGHT, BLUR_EFFECT_STYLE_DARK, BLUR_EFFECT_STYLE_REGULAR, BLUR_EFFECT_STYLE_PROMINENT
22
+ - **BLUR_EFFECT_STYLE_EXTRA_\***: BLUR_EFFECT_STYLE_EXTRA_LIGHT
23
+ - **BLUR_EFFECT_STYLE_SYSTEM_\***: BLUR_EFFECT_STYLE_SYSTEM_MATERIAL
24
+ - **BLUR_EFFECT_STYLE_SYSTEM_CHROME_\***: BLUR_EFFECT_STYLE_SYSTEM_CHROME_MATERIAL
25
+ - **BLUR_EFFECT_STYLE_SYSTEM_CHROME_MATERIAL_\***: BLUR_EFFECT_STYLE_SYSTEM_CHROME_MATERIAL_LIGHT, BLUR_EFFECT_STYLE_SYSTEM_CHROME_MATERIAL_DARK
26
+ - **BLUR_EFFECT_STYLE_SYSTEM_MATERIAL_\***: BLUR_EFFECT_STYLE_SYSTEM_MATERIAL_LIGHT, BLUR_EFFECT_STYLE_SYSTEM_MATERIAL_DARK
27
+ - **BLUR_EFFECT_STYLE_SYSTEM_THICK_\***: BLUR_EFFECT_STYLE_SYSTEM_THICK_MATERIAL
28
+ - **BLUR_EFFECT_STYLE_SYSTEM_THICK_MATERIAL_\***: BLUR_EFFECT_STYLE_SYSTEM_THICK_MATERIAL_LIGHT, BLUR_EFFECT_STYLE_SYSTEM_THICK_MATERIAL_DARK
29
+ - **BLUR_EFFECT_STYLE_SYSTEM_THIN_\***: BLUR_EFFECT_STYLE_SYSTEM_THIN_MATERIAL
30
+ - **BLUR_EFFECT_STYLE_SYSTEM_THIN_MATERIAL_\***: BLUR_EFFECT_STYLE_SYSTEM_THIN_MATERIAL_LIGHT, BLUR_EFFECT_STYLE_SYSTEM_THIN_MATERIAL_DARK
31
+ - **BLUR_EFFECT_STYLE_SYSTEM_ULTRA_THIN_\***: BLUR_EFFECT_STYLE_SYSTEM_ULTRA_THIN_MATERIAL
32
+ - **BLUR_EFFECT_STYLE_SYSTEM_ULTRA_THIN_MATERIAL_\***: BLUR_EFFECT_STYLE_SYSTEM_ULTRA_THIN_MATERIAL_LIGHT, BLUR_EFFECT_STYLE_SYSTEM_ULTRA_THIN_MATERIAL_DARK
33
+ - **CACHE_POLICY_RELOAD_IGNORING_LOCAL_CACHE_\***: CACHE_POLICY_RELOAD_IGNORING_LOCAL_CACHE_DATA
34
+ - **CACHE_POLICY_RETURN_CACHE_DATA_DONT_\***: CACHE_POLICY_RETURN_CACHE_DATA_DONT_LOAD
35
+ - **CACHE_POLICY_RETURN_CACHE_DATA_ELSE_\***: CACHE_POLICY_RETURN_CACHE_DATA_ELSE_LOAD
36
+ - **CACHE_POLICY_USE_PROTOCOL_CACHE_\***: CACHE_POLICY_USE_PROTOCOL_CACHE_POLICY
37
+ - **CLIP_MODE_\***: CLIP_MODE_DEFAULT, CLIP_MODE_DISABLED, CLIP_MODE_ENABLED
38
+ - **COLLISION_MODE_\***: COLLISION_MODE_ALL, COLLISION_MODE_BOUNDARY, COLLISION_MODE_ITEM
39
+ - **CREDENTIAL_PERSISTENCE_\***: CREDENTIAL_PERSISTENCE_NONE, CREDENTIAL_PERSISTENCE_PERMANENT, CREDENTIAL_PERSISTENCE_SYNCHRONIZABLE
40
+ - **CREDENTIAL_PERSISTENCE_FOR_\***: CREDENTIAL_PERSISTENCE_FOR_SESSION
41
+ - **DATE_PICKER_STYLE_\***: DATE_PICKER_STYLE_AUTOMATIC, DATE_PICKER_STYLE_WHEELS, DATE_PICKER_STYLE_COMPACT, DATE_PICKER_STYLE_INLINE
42
+ - **FEEDBACK_GENERATOR_IMPACT_STYLE_\***: FEEDBACK_GENERATOR_IMPACT_STYLE_LIGHT, FEEDBACK_GENERATOR_IMPACT_STYLE_MEDIUM, FEEDBACK_GENERATOR_IMPACT_STYLE_HEAVY
43
+ - **FEEDBACK_GENERATOR_NOTIFICATION_TYPE_\***: FEEDBACK_GENERATOR_NOTIFICATION_TYPE_SUCCESS, FEEDBACK_GENERATOR_NOTIFICATION_TYPE_WARNING, FEEDBACK_GENERATOR_NOTIFICATION_TYPE_ERROR
44
+ - **FEEDBACK_GENERATOR_TYPE_\***: FEEDBACK_GENERATOR_TYPE_SELECTION, FEEDBACK_GENERATOR_TYPE_IMPACT, FEEDBACK_GENERATOR_TYPE_NOTIFICATION
45
+ - **GLASS_EFFECT_STYLE_\***: GLASS_EFFECT_STYLE_REGULAR, GLASS_EFFECT_STYLE_CLEAR
46
+ - **INJECTION_TIME_DOCUMENT_\***: INJECTION_TIME_DOCUMENT_START, INJECTION_TIME_DOCUMENT_END
47
+ - **KEYBOARD_DISMISS_MODE_\***: KEYBOARD_DISMISS_MODE_NONE, KEYBOARD_DISMISS_MODE_INTERACTIVE
48
+ - **KEYBOARD_DISMISS_MODE_ON_\***: KEYBOARD_DISMISS_MODE_ON_DRAG
49
+ - **LARGE_TITLE_DISPLAY_MODE_\***: LARGE_TITLE_DISPLAY_MODE_AUTOMATIC, LARGE_TITLE_DISPLAY_MODE_ALWAYS, LARGE_TITLE_DISPLAY_MODE_NEVER
50
+ - **LIVEPHOTO_BADGE_OPTIONS_LIVE_\***: LIVEPHOTO_BADGE_OPTIONS_LIVE_OFF
51
+ - **LIVEPHOTO_BADGE_OPTIONS_OVER_\***: LIVEPHOTO_BADGE_OPTIONS_OVER_CONTENT
52
+ - **LIVEPHOTO_PLAYBACK_STYLE_\***: LIVEPHOTO_PLAYBACK_STYLE_FULL, LIVEPHOTO_PLAYBACK_STYLE_HINT
53
+ - **MENU_POPUP_ARROW_DIRECTION_\***: MENU_POPUP_ARROW_DIRECTION_UP, MENU_POPUP_ARROW_DIRECTION_DOWN, MENU_POPUP_ARROW_DIRECTION_LEFT, MENU_POPUP_ARROW_DIRECTION_RIGHT, MENU_POPUP_ARROW_DIRECTION_DEFAULT
54
+ - **MODAL_PRESENTATION_\***: MODAL_PRESENTATION_FORMSHEET, MODAL_PRESENTATION_FULLSCREEN, MODAL_PRESENTATION_PAGESHEET
55
+ - **MODAL_PRESENTATION_CURRENT_\***: MODAL_PRESENTATION_CURRENT_CONTEXT
56
+ - **MODAL_PRESENTATION_OVER_CURRENT_\***: MODAL_PRESENTATION_OVER_CURRENT_CONTEXT
57
+ - **MODAL_PRESENTATION_OVER_CURRENT_FULL_\***: MODAL_PRESENTATION_OVER_CURRENT_FULL_SCREEN
58
+ - **MODAL_TRANSITION_STYLE_COVER_\***: MODAL_TRANSITION_STYLE_COVER_VERTICAL
59
+ - **MODAL_TRANSITION_STYLE_CROSS_\***: MODAL_TRANSITION_STYLE_CROSS_DISSOLVE
60
+ - **MODAL_TRANSITION_STYLE_FLIP_\***: MODAL_TRANSITION_STYLE_FLIP_HORIZONTAL
61
+ - **MODAL_TRANSITION_STYLE_PARTIAL_\***: MODAL_TRANSITION_STYLE_PARTIAL_CURL
62
+ - **PREVIEW_ACTION_STYLE_\***: PREVIEW_ACTION_STYLE_DEFAULT, PREVIEW_ACTION_STYLE_SELECTED, PREVIEW_ACTION_STYLE_DESTRUCTIVE
63
+ - **PUSH_MODE_\***: PUSH_MODE_CONTINUOUS, PUSH_MODE_INSTANTANEOUS
64
+ - **ROW_ACTION_STYLE_\***: ROW_ACTION_STYLE_DEFAULT, ROW_ACTION_STYLE_DESTRUCTIVE, ROW_ACTION_STYLE_NORMAL
65
+ - **SCROLL_DECELERATION_RATE_\***: SCROLL_DECELERATION_RATE_FAST, SCROLL_DECELERATION_RATE_NORMAL
66
+ - **SCROLL_VIEW_EDGE_EFFECT_STYLE_\***: SCROLL_VIEW_EDGE_EFFECT_STYLE_AUTOMATIC, SCROLL_VIEW_EDGE_EFFECT_STYLE_HARD, SCROLL_VIEW_EDGE_EFFECT_STYLE_SOFT
67
+ - **SEARCH_BAR_STYLE_\***: SEARCH_BAR_STYLE_PROMINENT, SEARCH_BAR_STYLE_MINIMAL
68
+ - **SELECTION_GRANULARITY_\***: SELECTION_GRANULARITY_DYNAMIC, SELECTION_GRANULARITY_CHARACTER
69
+ - **SHORTCUT_ICON_TYPE_\***: SHORTCUT_ICON_TYPE_COMPOSE, SHORTCUT_ICON_TYPE_PLAY, SHORTCUT_ICON_TYPE_PAUSE, SHORTCUT_ICON_TYPE_ADD, SHORTCUT_ICON_TYPE_LOCATION, SHORTCUT_ICON_TYPE_SEARCH, SHORTCUT_ICON_TYPE_SHARE, SHORTCUT_ICON_TYPE_PROHIBIT, SHORTCUT_ICON_TYPE_CONTACT, SHORTCUT_ICON_TYPE_HOME, SHORTCUT_ICON_TYPE_FAVORITE, SHORTCUT_ICON_TYPE_LOVE, SHORTCUT_ICON_TYPE_CLOUD, SHORTCUT_ICON_TYPE_INVITATION, SHORTCUT_ICON_TYPE_CONFIRMATION, SHORTCUT_ICON_TYPE_MAIL, SHORTCUT_ICON_TYPE_MESSAGE, SHORTCUT_ICON_TYPE_DATE, SHORTCUT_ICON_TYPE_TIME, SHORTCUT_ICON_TYPE_TASK, SHORTCUT_ICON_TYPE_ALARM, SHORTCUT_ICON_TYPE_BOOKMARK, SHORTCUT_ICON_TYPE_SHUFFLE, SHORTCUT_ICON_TYPE_AUDIO, SHORTCUT_ICON_TYPE_UPDATE
70
+ - **SHORTCUT_ICON_TYPE_CAPTURE_\***: SHORTCUT_ICON_TYPE_CAPTURE_PHOTO, SHORTCUT_ICON_TYPE_CAPTURE_VIDEO
71
+ - **SHORTCUT_ICON_TYPE_MARK_\***: SHORTCUT_ICON_TYPE_MARK_LOCATION
72
+ - **SHORTCUT_ICON_TYPE_TASK_\***: SHORTCUT_ICON_TYPE_TASK_COMPLETED
73
+ - **TAB_GROUP_MINIMIZE_BEHAVIOR_\***: TAB_GROUP_MINIMIZE_BEHAVIOR_AUTOMATIC, TAB_GROUP_MINIMIZE_BEHAVIOR_NEVER
74
+ - **TAB_GROUP_MINIMIZE_BEHAVIOR_ON_SCROLL_\***: TAB_GROUP_MINIMIZE_BEHAVIOR_ON_SCROLL_UP, TAB_GROUP_MINIMIZE_BEHAVIOR_ON_SCROLL_DOWN
75
+ - **TABLEVIEW_INDEX_\***: TABLEVIEW_INDEX_SEARCH
76
+
77
+
78
+ ### Methods (29)
79
+ | Method | Returns | Platform | Description |
80
+ |--------|---------|----------|-------------|
81
+ | createLivePhotoBadge(type) | Ti.Blob | ios | Creates a live photo badge to be used together wi… |
82
+ | createButtonConfiguration(parameters) | Ti.UI.iOS.ButtonConfiguration | ios | Creates a button configuration object for customi… |
83
+ | systemImage(name, parameters) | Ti.Blob | ios | Get image from SF Symbols provided by Apple. |
84
+ | createAnchorAttachmentBehavior(parameters) | Ti.UI.iOS.AnchorAttachmentBehavior | ios | Creates and returns an instance of <Titanium.UI.i… |
85
+ | createAnimator(parameters) | Ti.UI.iOS.Animator | ios | Creates and returns an instance of <Titanium.UI.i… |
86
+ | createBlurView(parameters) | Ti.UI.iOS.BlurView | ios | Creates and returns an instance of <Titanium.UI.i… |
87
+ | createCollisionBehavior(parameters) | Ti.UI.iOS.CollisionBehavior | ios | Creates and returns an instance of <Titanium.UI.i… |
88
+ | createCoverFlowView(parameters) | Ti.UI.iOS.CoverFlowView | ios | Creates and returns an instance of <Titanium.UI.i… |
89
+ | createDocumentViewer(parameters) | Ti.UI.iOS.DocumentViewer | ios | Creates and returns an instance of <Titanium.UI.i… |
90
+ | createDynamicItemBehavior(parameters) | Ti.UI.iOS.DynamicItemBehavior | ios | Creates and returns an instance of <Titanium.UI.i… |
91
+ | createGravityBehavior(parameters) | Ti.UI.iOS.GravityBehavior | ios | Creates and returns an instance of <Titanium.UI.i… |
92
+ | createLivePhotoView(parameters) | Ti.UI.iOS.LivePhotoView | ios | Creates and returns an instance of <Titanium.UI.i… |
93
+ | createMenuPopup(parameters) | Ti.UI.iOS.MenuPopup | ios | Creates and returns an instance of <Titanium.UI.i… |
94
+ | createNavigationWindow(parameters) | Ti.UI.iOS.NavigationWindow | ios | Creates and returns an instance of <Titanium.UI.i… |
95
+ | createPreviewAction(parameters) | Ti.UI.iOS.PreviewAction | ios | Creates and returns an instance of <Titanium.UI.i… |
96
+ | createPreviewActionGroup(parameters) | Ti.UI.iOS.PreviewActionGroup | ios | Creates and returns an instance of <Titanium.UI.i… |
97
+ | createPreviewContext(parameters) | Ti.UI.iOS.PreviewContext | ios | Creates and returns an instance of <Titanium.UI.i… |
98
+ | createPushBehavior(parameters) | Ti.UI.iOS.PushBehavior | ios | Creates and returns an instance of <Titanium.UI.i… |
99
+ | createSnapBehavior(parameters) | Ti.UI.iOS.SnapBehavior | ios | Creates and returns an instance of <Titanium.UI.i… |
100
+ | createSplitWindow(parameters) | Ti.UI.iOS.SplitWindow | ios | Creates and returns an instance of <Titanium.UI.i… |
101
+ | createStepper(parameters) | Ti.UI.iOS.Stepper | ios | Creates and returns an instance of <Titanium.UI.i… |
102
+ | createSystemButton(parameters) | Ti.UI.iOS.SystemButton | ios | Creates and returns an instance of <Titanium.UI.i… |
103
+ | createTabbedBar(parameters) | Ti.UI.iOS.TabbedBar | ios | Creates and returns an instance of <Titanium.UI.i… |
104
+ | createToolbar(parameters) | Ti.UI.iOS.Toolbar | ios | Creates and returns an instance of <Titanium.UI.i… |
105
+ | createTransitionAnimation(parameters) | Ti.UI.iOS.TransitionAnimation | ios | Creates and returns an instance of <Titanium.UI.i… |
106
+ | createViewAttachmentBehavior(parameters) | Ti.UI.iOS.ViewAttachmentBehavior | ios | Creates and returns an instance of <Titanium.UI.i… |
107
+ | createWebViewConfiguration(parameters) | Ti.UI.iOS.WebViewConfiguration | ios | Creates and returns an instance of <Titanium.UI.i… |
108
+ | createWebViewDecisionHandler(parameters) | Ti.UI.iOS.WebViewDecisionHandler | ios | Creates and returns an instance of <Titanium.UI.i… |
109
+ | createWebViewProcessPool(parameters) | Ti.UI.iOS.WebViewProcessPool | ios | Creates and returns an instance of <Titanium.UI.i… |
110
+
111
+
112
+ ---
113
+
114
+ ## Ti.UI.iOS.AlertDialogStyle
115
+ > A set of constants for the style that can be used for the `style` property of <Titanium.UI.AlertDialog>.
116
+ > Extends Ti.Proxy
117
+ > Platforms: ios
118
+
119
+ ### Constants (4)
120
+ - **LOGIN_AND_PASSWORD_\***: LOGIN_AND_PASSWORD_INPUT
121
+ - **OTHER_\***: DEFAULT
122
+ - **PLAIN_TEXT_\***: PLAIN_TEXT_INPUT
123
+ - **SECURE_TEXT_\***: SECURE_TEXT_INPUT
124
+
125
+
126
+
127
+
128
+ ---
129
+
130
+ ## Ti.UI.iOS.AnimationStyle
131
+ > A set of constants for the animation styles used for view transitions. One of the group of animation style constants * [CURL_DOWN](Titanium.UI.iOS.AnimationStyle.CURL_DOWN) * [CURL_UP](Titanium.UI.iOS.AnimationStyle.CURL_UP) * [FLIP_FROM_LEFT](Titanium.UI.iOS.AnimationStyle.FLIP_FROM_LEFT) * [FLIP_FROM_RIGHT](Titanium.UI.iOS.AnimationStyle.FLIP_FROM_RIGHT) * [FLIP_FROM_TOP](Titanium.UI.iOS.AnimationStyle.FLIP_FROM_TOP) * [FLIP_FROM_BOTTOM](Titanium.UI.iOS.AnimationStyle.FLIP_FROM_BOTTOM) * [CROSS_DISSOLVE](Titanium.UI.iOS.AnimationStyle.CROSS_DISSOLVE) * [NONE](Titanium.UI.iOS.AnimationStyle.NONE)
132
+ > Extends Ti.Proxy
133
+ > Platforms: ios
134
+
135
+ ### Constants (8)
136
+ - **CROSS_\***: CROSS_DISSOLVE
137
+ - **CURL_\***: CURL_DOWN, CURL_UP
138
+ - **FLIP_FROM_\***: FLIP_FROM_LEFT, FLIP_FROM_RIGHT, FLIP_FROM_TOP, FLIP_FROM_BOTTOM
139
+ - **OTHER_\***: NONE
140
+
141
+
142
+
143
+
144
+ ---
145
+
146
+ ## Ti.UI.iOS.ApplicationShortcuts
147
+ > The Home screen quick actions API is for adding shortcuts to your app icon that anticipate and accelerate a user's interaction with your app.
148
+ > Extends Ti.Proxy
149
+ > Platforms: ios
150
+
151
+
152
+ ### Methods (7)
153
+ | Method | Returns | Platform | Description |
154
+ |--------|---------|----------|-------------|
155
+ | listDynamicShortcuts(—) | Array<ShortcutParams> | ios | Returns an array of the application shortcuts cre… |
156
+ | listStaticShortcuts(—) | Array<ShortcutParams> | ios | Returns an array of the application shortcuts lis… |
157
+ | removeAllDynamicShortcuts(—) | void | ios | Removes all dynamically created application short… |
158
+ | dynamicShortcutExists(identifier) | Boolean | ios | Returns true or false depending if the provided s… |
159
+ | addDynamicShortcut(params) | void | ios | Creates a new dynamic application shortcut item. |
160
+ | removeDynamicShortcut(identifier) | void | ios | Removes the dynamic application shortcut item ide… |
161
+ | getDynamicShortcut(identifier) | ShortcutParams | ios | Gets the dynamic application shortcut item identi… |
162
+
163
+
164
+ ---
165
+
166
+ ## Ti.UI.iOS.BlurView
167
+ > A <Titanium.UI.iOS.BlurView> object gives you an easy way implement some complex visual effects. The blur effect is applied to every view the blur view is added to by default. You can also place the blur view above other views and all visible views layered under the blur view are blurred as well. For more information on BlurView, please refer to the official [Apple documentation](https://developer.apple.com/documentation/uikit/uivisualeffectview). Note: In iOS 26, Apple introduced the `UIGlassEffectView`, an alternative to classic blur views. See the <Titanium.UI.iOS.BlurView.glassEffect> property for more details.
168
+ > Extends Ti.UI.View
169
+ > Platforms: ios
170
+
171
+ ### Properties (unique: 2/49)
172
+ | Property | Type | Platform | Description |
173
+ |----------|------|----------|-------------|
174
+ | effect | Number | ios | The blur effect to apply to the effect view. |
175
+ | glassEffect | GlassEffectConfiguration | ios | The glass effect configuration to apply to the ef… |
176
+
177
+
178
+
179
+
180
+ ---
181
+
182
+ ## Ti.UI.iOS.ButtonConfiguration
183
+ > A configuration object for customizing the appearance and behavior of a button.
184
+ > Extends Ti.Proxy
185
+ > Platforms: ios
186
+
187
+ ### Properties (unique: 15/17)
188
+ | Property | Type | Platform | Description |
189
+ |----------|------|----------|-------------|
190
+ | style | String | ios | The style of button configuration to create. |
191
+ | title | String | ios | The title text to display on the button. |
192
+ | subtitle | String | ios | The subtitle text to display below the title. |
193
+ | backgroundColor | String \| Ti.UI.Color | ios | The background color of the button. |
194
+ | color | String \| Ti.UI.Color | ios | The foreground color of the button's content. |
195
+ | image | String \| Ti.Blob \| Ti.Filesystem.File | ios | The image to display on the button. |
196
+ | loading | Boolean | ios | Whether or not a loading indicator should be shown |
197
+ | padding | Padding | ios | The padding around the button's content. |
198
+ | imagePlacement | String | ios | The placement of the image relative to the title. |
199
+ | imagePadding | Number | ios | The spacing between the image and title. |
200
+ | titlePadding | Number | ios | The spacing between the title and subtitle. |
201
+ | font | Font | ios | Font to use for the button title. |
202
+ | textAlign | String \| Number | ios | Text alignment of the configuration title. |
203
+ | attributedString | Ti.UI.AttributedString | ios | Specify an attributed string for the button title. |
204
+ | backgroundSelectedColor | String \| Ti.UI.Color | ios | Background color to use while the button is highl… |
205
+
206
+
207
+
208
+
209
+ ---
210
+
211
+ ## Ti.UI.iOS.CoverFlowView
212
+ > The cover flow view is a container showing animated three-dimensional images in a style consistent with the former cover flow presentation style used for iPod, iTunes, and Finder.
213
+ > Extends Ti.UI.View
214
+ > Platforms: ios
215
+
216
+ ### Properties (unique: 2/48)
217
+ | Property | Type | Platform | Description |
218
+ |----------|------|----------|-------------|
219
+ | images | Array<String> \| Array<Titanium.Blob> \| Array<Titanium.Filesystem.File> \| Array<CoverFlowImageType> | ios | Images to display in the view. |
220
+ | selected | Number | ios | Index to make selected. |
221
+
222
+
223
+ ### Methods (1)
224
+ | Method | Returns | Platform | Description |
225
+ |--------|---------|----------|-------------|
226
+ | setImage(index, image) | void | ios | Changes the image for a specified index. |
227
+
228
+ ### Events (2)
229
+ | Event | Platform | Description |
230
+ |-------|----------|-------------|
231
+ | click | ios | Fired when the user clicks on the view. |
232
+ | change | ios | Fired when the user changes the image using a gesture. |
233
+
234
+ ---
235
+
236
+ ## Ti.UI.iOS.DocumentViewer
237
+ > A DocumentViewer provides in-app support for managing user interactions with files on the local system.
238
+ > Extends Ti.Proxy
239
+ > Platforms: ios
240
+
241
+ ### Properties (unique: 4/6)
242
+ | Property | Type | Platform | Description |
243
+ |----------|------|----------|-------------|
244
+ | name | String | ios | Name of the file (without the path). |
245
+ | url | String | ios | URL of the document being previewed. |
246
+ | annotation | Dictionary \| Array \| String \| Number \| Date | ios | Custom property list information for the target f… |
247
+ | title | String | ios | Title of the file. |
248
+
249
+
250
+ ### Methods (2)
251
+ | Method | Returns | Platform | Description |
252
+ |--------|---------|----------|-------------|
253
+ | hide(options) | void | ios | Dismisses the document viewer. |
254
+ | show(options) | void | ios | Displays the document viewer over the current vie… |
255
+
256
+ ### Events (3)
257
+ | Event | Platform | Description |
258
+ |-------|----------|-------------|
259
+ | load | ios | Fires when the document is previewed. |
260
+ | menu | ios | Fires when the options menu appears before the document is previewed. |
261
+ | unload | ios | Fires when the document is dismissed. |
262
+
263
+ ---
264
+
265
+ ## Ti.UI.iOS.FeedbackGenerator
266
+ > The feedback generator API is introduced in iOS 10 to handle the haptic feedback when using an iPhone 7 or later devices.
267
+ > Extends Ti.Proxy
268
+ > Platforms: ios
269
+
270
+ ### Properties (unique: 2/4)
271
+ | Property | Type | Platform | Description |
272
+ |----------|------|----------|-------------|
273
+ | type | Number | ios | The type of feedback generator you want to create. |
274
+ | style | Number | ios | The style of the feedback generator you want to c… |
275
+
276
+
277
+ ### Methods (4)
278
+ | Method | Returns | Platform | Description |
279
+ |--------|---------|----------|-------------|
280
+ | prepare(—) | void | ios | Used to prepare the haptic sensor for the upcomin… |
281
+ | selectionChanged(—) | void | ios | Used to trigger a haptic feedback after a selecti… |
282
+ | impactOccurred(—) | void | ios | Used to trigger a haptic feedback after an impact… |
283
+ | notificationOccurred(notificationType) | void | ios | Used to trigger a haptic feedback after a notific… |
284
+
285
+
286
+ ---
287
+
288
+ ## Ti.UI.iOS.ListViewCellSelectionStyle
289
+ > A set of constants for the style that can be used for the `selectionStyle` property of a ListItem, which is set in the `properties` dictionary of either the <ListDataItem> or <ItemTemplate>.
290
+ > Extends Ti.Proxy
291
+ > Platforms: ios
292
+
293
+ ### Constants (3)
294
+ - **OTHER_\***: BLUE, GRAY, NONE
295
+
296
+
297
+
298
+
299
+ ---
300
+
301
+ ## Ti.UI.iOS.ListViewScrollPosition
302
+ > A set of constants for the position value that can be used for the `position` property of <ListViewAnimationProperties> when invoking the ListView's `scrollToItem`, `appendSection`, `deleteSectionAt`, `insertSectionAt` and `replaceSectionAt` methods.
303
+ > Extends Ti.Proxy
304
+ > Platforms: ios
305
+
306
+ ### Constants (4)
307
+ - **OTHER_\***: BOTTOM, MIDDLE, NONE, TOP
308
+
309
+
310
+
311
+
312
+ ---
313
+
314
+ ## Ti.UI.iOS.ListViewStyle
315
+ > A set of constants for the style that can be used for the `style` property of <Titanium.UI.ListView>.
316
+ > Extends Ti.Proxy
317
+ > Platforms: ios
318
+
319
+ ### Constants (3)
320
+ - **INSET_\***: INSET_GROUPED
321
+ - **OTHER_\***: GROUPED, PLAIN
322
+
323
+
324
+
325
+
326
+ ---
327
+
328
+ ## Ti.UI.iOS.LivePhoto
329
+ > Abstract object representing a live photo used in <Titanium.UI.iOS.LivePhotoView>.
330
+ > Extends Ti.Proxy
331
+ > Platforms: both
332
+
333
+
334
+
335
+
336
+ ---
337
+
338
+ ## Ti.UI.iOS.LivePhotoView
339
+ > A view to display a <Titanium.UI.iOS.LivePhoto> object introduced in iOS 9.1.
340
+ > Extends Ti.UI.View
341
+ > Platforms: ios
342
+
343
+ ### Properties (unique: 2/49)
344
+ | Property | Type | Platform | Description |
345
+ |----------|------|----------|-------------|
346
+ | livePhoto | Ti.UI.iOS.LivePhoto | ios | The Live Photo displayed in the view. |
347
+ | muted | Boolean | ios | A Boolean value that determines whether the view … |
348
+
349
+
350
+ ### Methods (2)
351
+ | Method | Returns | Platform | Description |
352
+ |--------|---------|----------|-------------|
353
+ | startPlaybackWithStyle(playbackStyle) | void | ios | Begins playback of Live Photo content in the view. |
354
+ | stopPlayback(—) | void | ios | Ends playback of Live Photo content in the view. |
355
+
356
+ ### Events (2)
357
+ | Event | Platform | Description |
358
+ |-------|----------|-------------|
359
+ | start | ios | Fired when the Live Photo playback starts. |
360
+ | stop | ios | Fired when the Live Photo playback stops. |
361
+
362
+ ---
363
+
364
+ ## Ti.UI.iOS.MenuPopup
365
+ > A menu popup provides the ability to create custom tooltip options using the `items` property covering the native `UIMenuController` class. See also: * [iOS Developer Library: UIMenuController](https://developer.apple.com/documentation/uikit/uimenucontroller)
366
+ > Extends Ti.Proxy
367
+ > Platforms: ios
368
+
369
+ ### Properties (unique: 1/3)
370
+ | Property | Type | Platform | Description |
371
+ |----------|------|----------|-------------|
372
+ | items | Array<String> | ios | The items of the menu popup. |
373
+
374
+
375
+ ### Methods (3)
376
+ | Method | Returns | Platform | Description |
377
+ |--------|---------|----------|-------------|
378
+ | show(options) | void | ios | Shows the menu popup. |
379
+ | hide(options) | void | ios | Hides the menu popup. |
380
+ | isVisible(—) | void | ios | Indicates whether the menu popup is currently vis… |
381
+
382
+ ### Events (1)
383
+ | Event | Platform | Description |
384
+ |-------|----------|-------------|
385
+ | click | ios | Fired when the user clicks at one of the menu popup items. |
386
+
387
+ ---
388
+
389
+ ## Ti.UI.iOS.NavigationWindow
390
+ > A `NavigationWindow` implements a specialized view that manages the navigation of hierarchical content.
391
+ > Extends Ti.UI.Window
392
+ > Platforms: ios
393
+
394
+ ### Properties (unique: 1/72)
395
+ | Property | Type | Platform | Description |
396
+ |----------|------|----------|-------------|
397
+ | window | Ti.UI.Window | ios | Window to add to this navigation window. |
398
+
399
+
400
+ ### Methods (3)
401
+ | Method | Returns | Platform | Description |
402
+ |--------|---------|----------|-------------|
403
+ | closeWindow(window, options) | void | ios | Closes a window and removes it from the navigatio… |
404
+ | openWindow(window, options) | void | ios | Opens a window within the navigation window. |
405
+ | popToRootWindow(options) | void | ios | Closes all windows that are currently opened insi… |
406
+
407
+
408
+ ---
409
+
410
+ ## Ti.UI.iOS.PreviewAction
411
+ > A PreviewAction provides options to configure actions used by the iOS 9 3D-Touch "Peek and Pop" feature.
412
+ > Extends Ti.Proxy
413
+ > Platforms: ios
414
+
415
+ ### Properties (unique: 2/4)
416
+ | Property | Type | Platform | Description |
417
+ |----------|------|----------|-------------|
418
+ | title | String | ios | The title of the action. |
419
+ | style | Number | ios | The style of the action. |
420
+
421
+
422
+
423
+ ### Events (1)
424
+ | Event | Platform | Description |
425
+ |-------|----------|-------------|
426
+ | click | ios | Fired when the device detects a click against a preview action. |
427
+
428
+ ---
429
+
430
+ ## Ti.UI.iOS.PreviewActionGroup
431
+ > A PreviewActionGroup provides options to configure a group of actions used by the iOS 9 3D-Touch feature "Peek and Pop".
432
+ > Extends Ti.Proxy
433
+ > Platforms: ios
434
+
435
+ ### Properties (unique: 3/5)
436
+ | Property | Type | Platform | Description |
437
+ |----------|------|----------|-------------|
438
+ | title | String | ios | The title of the action group. |
439
+ | style | Number | ios | The style of the action group. |
440
+ | actions | Array<Titanium.UI.iOS.PreviewAction> | ios | The preview actions assigned to this preview acti… |
441
+
442
+
443
+
444
+
445
+ ---
446
+
447
+ ## Ti.UI.iOS.PreviewContext
448
+ > A PreviewContext provides options to configure the iOS 9 3D-Touch "Peek and Pop" feature.
449
+ > Extends Ti.Proxy
450
+ > Platforms: ios
451
+
452
+ ### Properties (unique: 3/5)
453
+ | Property | Type | Platform | Description |
454
+ |----------|------|----------|-------------|
455
+ | actions | Array<Titanium.UI.iOS.PreviewAction> | ios | The preview actions and preview action groups. |
456
+ | contentHeight | Number | ios | The height of the preview. |
457
+ | preview | Ti.UI.View | ios | The preview view. |
458
+
459
+
460
+
461
+ ### Events (2)
462
+ | Event | Platform | Description |
463
+ |-------|----------|-------------|
464
+ | peek | ios | Fired when the user peeks the preview. You can configure the preview |
465
+ | pop | ios | Fired when the user pop the preview. You will most likely open a fullscreen win… |
466
+
467
+ ---
468
+
469
+ ## Ti.UI.iOS.ProgressBarStyle
470
+ > A set of constants for the bar styles used on the `style` property of <Titanium.UI.ProgressBar>.
471
+ > Extends Ti.Proxy
472
+ > Platforms: ios
473
+
474
+ ### Constants (3)
475
+ - **OTHER_\***: BAR, DEFAULT, PLAIN
476
+
477
+
478
+
479
+
480
+ ---
481
+
482
+ ## Ti.UI.iOS.RowAnimationStyle
483
+ > A set of constants for the Animation Styles used for transition on table view rows.
484
+ > Extends Ti.Proxy
485
+ > Platforms: ios
486
+
487
+ ### Constants (6)
488
+ - **OTHER_\***: BOTTOM, FADE, LEFT, NONE, RIGHT, TOP
489
+
490
+
491
+
492
+
493
+ ---
494
+
495
+ ## Ti.UI.iOS.ScrollIndicatorStyle
496
+ > A set of constants for the styles available for scrollbars used with <Titanium.UI.ScrollView.scrollIndicatorStyle> and <Titanium.UI.TableView.scrollIndicatorStyle> properties.
497
+ > Extends Ti.Proxy
498
+ > Platforms: ios
499
+
500
+ ### Constants (3)
501
+ - **OTHER_\***: BLACK, DEFAULT, WHITE
502
+
503
+
504
+
505
+
506
+ ---
507
+
508
+ ## Ti.UI.iOS.SplitWindow
509
+ > A SplitWindow is a window that manages the presentation of two side-by-side view controllers.
510
+ > Extends Ti.UI.Window
511
+ > Platforms: ios
512
+
513
+ ### Properties (unique: 7/97)
514
+ | Property | Type | Platform | Description |
515
+ |----------|------|----------|-------------|
516
+ | detailView | Ti.UI.Window | ios | Window for the detail view section of the SplitWi… |
517
+ | masterView | Ti.UI.Window | ios | Window for the master view section of the SplitWi… |
518
+ | showMasterInPortrait | Boolean | ios | Determines whether to show the master view in por… |
519
+ | masterIsOverlayed | Boolean | ios | Determines whether to show the master view is ove… |
520
+ | masterViewVisible | Boolean | ios | Determines whether to show the master view or hid… |
521
+ | portraitSplit | Number | ios | Determines the width of the `masterView` in portr… |
522
+ | landscapeSplit | Number | ios | Determines the width of the `masterView` in lands… |
523
+
524
+
525
+ ### Methods (2)
526
+ | Method | Returns | Platform | Description |
527
+ |--------|---------|----------|-------------|
528
+ | setShowMasterInPortrait(showMasterInPortrait, options) | void | ios | Sets the value of the [showMasterInPortrait](Tita… |
529
+ | setMasterIsOverlayed(masterIsOverlayed, options) | void | ios | Sets the value of the [masterIsOverlayed](Titaniu… |
530
+
531
+
532
+ ---
533
+
534
+ ## Ti.UI.iOS.StatusBar
535
+ > A set of constants for the status bar style.
536
+ > Extends Ti.Proxy
537
+ > Platforms: ios
538
+
539
+ ### Constants (8)
540
+ - **ANIMATION_STYLE_\***: ANIMATION_STYLE_NONE, ANIMATION_STYLE_SLIDE, ANIMATION_STYLE_FADE
541
+ - **DARK_\***: DARK_CONTENT
542
+ - **LIGHT_\***: LIGHT_CONTENT
543
+ - **OTHER_\***: DEFAULT, GRAY, GREY
544
+
545
+
546
+
547
+
548
+ ---
549
+
550
+ ## Ti.UI.iOS.Stepper
551
+ > A widget used to increment and decrement a value.
552
+ > Extends Ti.UI.View
553
+ > Platforms: ios
554
+
555
+ ### Properties (unique: 14/58)
556
+ | Property | Type | Platform | Description |
557
+ |----------|------|----------|-------------|
558
+ | backgroundImage | String | ios | Background image for the stepper in its normal st… |
559
+ | tintColor | String \| Ti.UI.Color | ios | Sets the color for the widget, any backgroundImag… |
560
+ | enabled | Boolean | ios | Determines if the stepper is enabled or disabled. |
561
+ | value | Number | ios | The current value of the stepper. |
562
+ | continuous | Boolean | ios | If YES, value change events are sent immediately … |
563
+ | autorepeat | Boolean | ios | If YES, the user pressing and holding on the step… |
564
+ | wraps | Boolean | ios | If YES, incrementing beyond <Titanium.UI.iOS.Step… |
565
+ | minimum | Number | ios | The minimum value the stepper will be set to, the… |
566
+ | maximum | Number | ios | The maximum value the stepper will be set to, the… |
567
+ | steps | Number | ios | The value the stepper will increment and decremen… |
568
+ | decrementImage | String | ios | Background image for the stepper decrement button… |
569
+ | decrementDisabledImage | String | ios | Background image for the stepper decrement button… |
570
+ | incrementImage | String | ios | Background image for the stepper increment button… |
571
+ | incrementDisabledImage | String | ios | Background image for the stepper increment button… |
572
+
573
+
574
+
575
+ ### Events (1)
576
+ | Event | Platform | Description |
577
+ |-------|----------|-------------|
578
+ | change | ios | Fired every time the stepper value changes. |
579
+
580
+ ---
581
+
582
+ ## Ti.UI.iOS.SystemButton
583
+ > A set of constants for creating standard iOS system buttons.
584
+ > Extends Ti.Proxy
585
+ > Platforms: ios
586
+
587
+ ### Constants (26)
588
+ - **CONTACT_\***: CONTACT_ADD
589
+ - **FAST_\***: FAST_FORWARD
590
+ - **FIXED_\***: FIXED_SPACE
591
+ - **FLEXIBLE_\***: FLEXIBLE_SPACE
592
+ - **INFO_\***: INFO_DARK, INFO_LIGHT
593
+ - **OTHER_\***: ACTION, ACTIVITY, ADD, BOOKMARKS, CAMERA, CANCEL, COMPOSE, DISCLOSURE, DONE, EDIT, ORGANIZE, PAUSE, PLAY, REFRESH, REPLY, REWIND, SAVE, SPINNER, STOP, TRASH
594
+
595
+
596
+
597
+
598
+ ---
599
+
600
+ ## Ti.UI.iOS.SystemIcon
601
+ > A set of constants for the system icon styles that can be used on a tab group tab.
602
+ > Extends Ti.Proxy
603
+ > Platforms: ios
604
+
605
+ ### Constants (12)
606
+ - **MOST_\***: MOST_RECENT, MOST_VIEWED
607
+ - **OTHER_\***: BOOKMARKS, CONTACTS, DOWNLOADS, FAVORITES, FEATURED, HISTORY, MORE, RECENTS, SEARCH
608
+ - **TOP_\***: TOP_RATED
609
+
610
+
611
+
612
+
613
+ ---
614
+
615
+ ## Ti.UI.iOS.TabbedBar
616
+ > A button bar that maintains a selected state.
617
+ > Extends Ti.UI.View
618
+ > Platforms: ios
619
+
620
+ ### Properties (unique: 3/49)
621
+ | Property | Type | Platform | Description |
622
+ |----------|------|----------|-------------|
623
+ | index | Number | ios | Index of the currently selected button. |
624
+ | labels | Array<String> \| Array<BarItemType> | ios | Array of labels for the tabbed bar. |
625
+ | style | Number | ios | Style of the tabbed bar. |
626
+
627
+
628
+
629
+ ### Events (1)
630
+ | Event | Platform | Description |
631
+ |-------|----------|-------------|
632
+ | click | ios | Fired when a button is clicked. |
633
+
634
+ ---
635
+
636
+ ## Ti.UI.iOS.TableViewCellSelectionStyle
637
+ > A set of constants for the style that can be used for the `selectionStyle` property of <Titanium.UI.TableViewRow>.
638
+ > Extends Ti.Proxy
639
+ > Platforms: ios
640
+
641
+ ### Constants (3)
642
+ - **OTHER_\***: BLUE, GRAY, NONE
643
+
644
+
645
+
646
+
647
+ ---
648
+
649
+ ## Ti.UI.iOS.TableViewScrollPosition
650
+ > A set of constants for the position value that can be used for the `position` property of <Titanium.UI.TableView> when invoking `scrollToIndex`.
651
+ > Extends Ti.Proxy
652
+ > Platforms: ios
653
+
654
+ ### Constants (4)
655
+ - **OTHER_\***: BOTTOM, MIDDLE, NONE, TOP
656
+
657
+
658
+
659
+
660
+ ---
661
+
662
+ ## Ti.UI.iOS.TableViewStyle
663
+ > A set of constants for the style that can be used for the `style` property of <Titanium.UI.TableView> and <Titanium.UI.ListView>.
664
+ > Extends Ti.Proxy
665
+ > Platforms: ios
666
+
667
+ ### Constants (3)
668
+ - **INSET_\***: INSET_GROUPED
669
+ - **OTHER_\***: GROUPED, PLAIN
670
+
671
+
672
+
673
+
674
+ ---
675
+
676
+ ## Ti.UI.iOS.Toolbar
677
+ > An iOS toolbar, which can contain buttons and certain other controls.
678
+ > Extends Ti.UI.View
679
+ > Platforms: ios
680
+
681
+ ### Properties (unique: 4/44)
682
+ | Property | Type | Platform | Description |
683
+ |----------|------|----------|-------------|
684
+ | barColor | String \| Ti.UI.Color | ios | Background color for the toolbar, as a color name… |
685
+ | items | Array<Titanium.UI.View> | ios | An array of buttons (or other widgets) contained … |
686
+ | extendBackground | Boolean | ios | If `true`, the background of the toolbar extends … |
687
+ | translucent | Boolean | ios | If `true`, a translucent background color is used… |
688
+
689
+
690
+
691
+
692
+ ---
693
+
694
+ ## Ti.UI.iOS.TransitionAnimation
695
+ > A transition animation when opening or closing windows in a <Titanium.UI.NavigationWindow> or <Titanium.UI.Tab>. Use this proxy with the Window's [transitionAnimation](Titanium.UI.Window.transitionAnimation) property.
696
+ > Extends Ti.Proxy
697
+ > Platforms: ios
698
+
699
+ ### Properties (unique: 3/5)
700
+ | Property | Type | Platform | Description |
701
+ |----------|------|----------|-------------|
702
+ | duration | Number | ios | Length of the transition in milliseconds. |
703
+ | transitionFrom | Ti.UI.Animation | ios | Animation to hide the current window. |
704
+ | transitionTo | Ti.UI.Animation | ios | Animation to show the new window. |
705
+
706
+
707
+
708
+
709
+ ---
710
+
711
+ ## Ti.UI.iOS.WebViewConfiguration
712
+ > A collection of properties used to initialize a web view.
713
+ > Extends Ti.Proxy
714
+ > Platforms: ios
715
+
716
+ ### Properties (unique: 8/10)
717
+ | Property | Type | Platform | Description |
718
+ |----------|------|----------|-------------|
719
+ | preferences | WebViewPreferencesObject | ios | The preference settings to be used by the web vie… |
720
+ | selectionGranularity | Number | ios | The level of granularity with which the user can … |
721
+ | mediaTypesRequiringUserActionForPlayback | Number | ios | Determines which media types require a user gestu… |
722
+ | suppressesIncrementalRendering | Boolean | ios | A Boolean value indicating whether the web view s… |
723
+ | allowsInlineMediaPlayback | Boolean | ios | A Boolean value indicating whether HTML5 videos p… |
724
+ | allowsAirPlayMediaPlayback | Boolean | ios | A Boolean value indicating whether AirPlay is all… |
725
+ | allowsPictureInPictureMediaPlayback | Boolean | ios | A Boolean value indicating whether HTML5 videos c… |
726
+ | processPool | Ti.UI.iOS.WebViewProcessPool | ios | The process pool from which to obtain the Web Con… |
727
+
728
+
729
+
730
+
731
+ ---
732
+
733
+ ## Ti.UI.iOS.WebViewDecisionHandler
734
+ > It represents the decision handler to tell to webview, whether allow or cancel the navigation.
735
+ > Extends Ti.Proxy
736
+ > Platforms: ios
737
+
738
+
739
+ ### Methods (1)
740
+ | Method | Returns | Platform | Description |
741
+ |--------|---------|----------|-------------|
742
+ | invoke(value) | void | ios | It calls the decision handler with given action p… |
743
+
744
+
745
+ ---
746
+
747
+ ## Ti.UI.iOS.WebViewProcessPool
748
+ > It represents a pool of Web Content processes.
749
+ > Extends Ti.Proxy
750
+ > Platforms: ios
751
+
752
+
753
+
754
+
755
+ ---
756
+