# Titanium.UI.iOS.ButtonConfiguration
A configuration object for customizing the appearance and behavior of a button.
# Overview
The ButtonConfiguration API provides a modern way to configure buttons on iOS with support for
various styles, titles, subtitles, images, and padding. This API wraps the native UIButtonConfiguration
introduced in iOS 15.0 and represents a modern alternative to the existing Button API while retaining
backwards compatibility. In the future, this API may be merged into the root parameters of a button instead.
Use the Titanium.UI.iOS.createButtonConfiguration method to create a button configuration.
Button configurations support several predefined styles:
- plain: A plain button style with minimal background
- tinted: A tinted button style with a subtle background
- filled: A filled button style with a solid background
- gray: A gray button style
- borderless: A borderless button style
- bordered: A bordered button style with an outline
- borderedTinted: A bordered button style with a tinted outline
- borderedProminent: A bordered button style with a prominent appearance
Additional styles available on iOS 26.0+:
- glass: A glass-like appearance
- prominentGlass: A prominent glass-like appearance
- clearGlass: A clear glass-like appearance
- prominentClearGlass: A prominent clear glass-like appearance
# Examples
# Basic Button Configuration
const button = Ti.UI.createButton({
configuration: Ti.UI.iOS.createButtonConfiguration({
style: 'filled',
title: 'Sign In',
subtitle: 'with your account',
backgroundColor: '#007AFF',
color: 'white'
})
});
# Button with Image and Padding
const button = Ti.UI.createButton({
configuration: Ti.UI.iOS.createButtonConfiguration({
style: 'borderedTinted',
title: 'Upload',
image: 'upload-icon.png',
imagePlacement: 'leading',
imagePadding: 8,
padding: {
top: 12,
left: 20,
bottom: 12,
right: 20
}
})
});
# Prominent Button Style
const button = Ti.UI.createButton({
configuration: Ti.UI.iOS.createButtonConfiguration({
style: 'borderedProminent',
title: 'Get Started',
backgroundColor: '#34C759'
})
});
# Typography and Alignment
const button = Ti.UI.createButton({
configuration: Ti.UI.iOS.createButtonConfiguration({
style: 'filled',
title: 'Continue',
font: { fontSize: 18, fontWeight: 'semibold' },
textAlign: Ti.UI.TEXT_ALIGNMENT_CENTER
})
});
# Highlighted Background Color
const button = Ti.UI.createButton({
configuration: Ti.UI.iOS.createButtonConfiguration({
style: 'filled',
title: 'Tap Me',
backgroundColor: '#007AFF',
backgroundSelectedColor: '#005BBB' // shown while pressed
})
});
# Properties
# apiName READONLY
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
.
# attributedString
Specify an attributed string for the button title.
Sets the configuration’s attributedTitle
. If set, avoid also setting
title
, color
, and font
to prevent conflicting styles.
# backgroundColor
The background color of the button.
Sets the base background color for the button. This color may be modified by the system based on the button state and configuration style.
# backgroundSelectedColor
Background color to use while the button is highlighted (pressed).
When this configuration is assigned to a Titanium.UI.Button and both
backgroundColor
and backgroundSelectedColor
are provided, the button will
automatically swap the configuration’s background to backgroundSelectedColor
when highlighted and restore the base color when not highlighted.
This mirrors the traditional backgroundSelectedColor
behavior on views when
used with modern button configurations.
# bubbleParent
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
# color
The foreground color of the button's content.
Sets the base foreground color for the button's title and subtitle text. This color may be modified by the system based on the button state.
# font
Font to use for the button title.
Sets the font applied to the configuration’s title via the underlying
UIButtonConfiguration.titleTextAttributesTransformer
.
When using attributedString
, prefer setting font in the attributed content instead.
# image
The image to display on the button.
The image to display alongside the button's title. Use the imagePlacement property to control where the image appears relative to the title.
# imagePadding
The spacing between the image and title.
The amount of spacing in points between the button's image and its title text.
Default: 0
# imagePlacement
The placement of the image relative to the title.
Controls where the button's image appears relative to its title text.
Valid string values are:
"leading"
: Place the image before the title text"trailing"
: Place the image after the title text"top"
: Place the image above the title text"bottom"
: Place the image below the title text
Default: leading
# padding
The padding around the button's content.
An object with top, left, bottom, and right properties to specify the content insets for the button.
# style CREATION ONLY
The style of button configuration to create.
Sets the base configuration style for the button. This property should be set first as it determines the initial configuration that other properties will modify.
Valid string values are:
"plain"
: A plain button style with minimal background"tinted"
: A tinted button style with a subtle background"filled"
: A filled button style with a solid background"gray"
: A gray button style"borderless"
: A borderless button style"bordered"
: A bordered button style with an outline"borderedTinted"
: A bordered button style with a tinted outline"borderedProminent"
: A bordered button style with a prominent appearance"glass"
: A glass-like appearance (iOS 26.0+)"prominentGlass"
: A prominent glass-like appearance (iOS 26.0+)"clearGlass"
: A clear glass-like appearance (iOS 26.0+)"prominentClearGlass"
: A prominent clear glass-like appearance (iOS 26.0+)
# textAlign
Text alignment of the configuration title.
Aligns the title within the button’s content area. Maps to
UIButtonConfigurationTitleAlignment
.
# titlePadding
The spacing between the title and subtitle.
The amount of spacing in points between the button's title and subtitle text.
Default: 0
# Methods
# addEventListener
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
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
# fireEvent
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
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 |
Returns
- Type
- void