OK, here some code to reproduce the issue. Scroll a bit up and
down and the layout will be messed up soon (log output: "[WARN]
Orphaned child found during proxy transfer!"). Some more scrolling
and the app will freeze.
API 1.4.0; iPhone SDK 4.0.1; Simulator
var max = 100;
var data = [];
for (var c=0; c<max; c++) {
var row = Ti.UI.createTableViewRow({
className: 'feedlist',
height: 'auto'
});
var textview = Ti.UI.createView({
layout: 'vertical',
height: 'auto'
});
var h1 = Ti.UI.createLabel({
text: 'Title title title #'+c,
height: 'auto'
});
textview.add(h1);
var cre = Ti.UI.createLabel({
text: 'Creator creator creator#'+c,
height: 'auto',
color: '#ccc'
});
textview.add(cre);
row.add(textview);
data[c] = row;
}
var win = Ti.UI.createWindow();
var tableview = Ti.UI.createTableView();
tableview.setData(data);
win.add(tableview);
win.open();