Titanium JIRA Archive
Titanium SDK/CLI (TIMOB)

[TIMOB-11] API - Titanium.UI.iPhone.createGroupedView

GitHub Issuen/a
TypeBug
PriorityMedium
StatusClosed
ResolutionFixed
Resolution Date2011-04-17T01:50:06.000+0000
Affected Version/sn/a
Fix Version/sRelease 0.5
ComponentsiOS
Labelsn/a
ReporterNolan Wright
AssigneeReggie Seagraves
Created2011-04-15T02:22:25.000+0000
Updated2011-04-17T01:50:06.000+0000

Description

Description

The purpose of this API is to create a native grouped view in iPhone. This is a pure native view and it will be treated similar to createWindow (in that it will have the same properties and functions available to it). In other words, it is not associated with an HTML page.

Example

// create grouped view  
var groupedView = Titanium.UI.iPhone.createGroupedView();
groupedView.addSection(optionSection);
groupedView.addSection(buttonSection);
groupedView.addSection(inputSection);`
groupedView.open({animated:true});

API Arguments

No arguments

API Functions

addSection : add a section to a grouped view

open : open the grouped view

Comments

  1. Blain Hamon 2011-04-15

    Implemented as of June 23

JSON Source