Mobile applications / Apps user interface |
This section describes the presentation style attributes that are supported for iOS devices.
<StyleList> <Style name="Window"> <StyleAttribute name="iosTintColor" value="white" /> </Style> </StyleList>
<StyleList> <Style name="Window"> <StyleAttribute name="iosTintColor" value="white" /> <StyleAttribute name="iosNavigationBarTintColor" value="blue" /> <StyleAttribute name="iosToolBarTintColor" value="blue" /> </Style> /StyleList>
The iosTintColor style attribute can be used at Window level to defined the text color for Tabbar and Toolbar elements.
However, when defining the text color at Window level, it has an impact on the form elements such as Folder, Button, SpinEdit and RadioGroup too. For example, if you set iosTintColor to white at the window level, Folder, Button, SpinEdit and RadioGroup element will appear as if they were hidden.
<StyleList> <Style name="Window"> <StyleAttribute name="iosTintColor" value="white" /> <StyleAttribute name="iosNavigationBarTintColor" value="blue" /> <StyleAttribute name="iosToolBarTintColor" value="blue" /> </Style> <Style name="Form"> <StyleAttribute name="iosTintColor" value="blue" /> </Style> </StyleList>
For a complete description of these attributes, see Style attributes reference.