UserGuide

iOS Control Hierarchy

From Xojo Documentation

The built-in controls have an inheritance hierarchy. The base class for all iOS controls is called iOSControl and it contains several common events, properties and methods.

Below is a list of some of the common events, properties and methods that are available for UI controls.

Events

Close

Called when the control is removed from its container, such as a view.

Open

Called after the control is created. This is where you typically put initialization code.

Properties

AccessibilityHint, AccessibilityLabel

Text that is read aloud when accessibility is enabled for the device.

Height, Left, Top, Width

These read-only properties indicate the position and size of the control (in points).

Visible

When True, the control is visible, when False the control is not visible.

Methods

SetTintColor

This lets you influence the color of some iOS controls.

See Also

iOSControl class; UserGuide:iOS UI topic