Skip to content

Instantly share code, notes, and snippets.

@kevinbubu
Created May 18, 2013 08:40
Show Gist options
  • Save kevinbubu/5603757 to your computer and use it in GitHub Desktop.
Save kevinbubu/5603757 to your computer and use it in GitHub Desktop.
var win = Ti.UI.createWindow({
backgroundColor:'#fff'
});
var data = [];
for(var i = 0; i < 10 ; i++){
data.push({title:'row ' + i, hasDetail:true});
}
var table = Ti.UI.createTableView({
data:data
});
win.add(table);
win.open();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment