我无法让我的 TableView 保持原状。正如下面的代码所示,TableView 位于第二个窗口内,该窗口本身位于 NavigationWindow 内 我的问题是:NavigationWindow 是否可能是模态的,如果是这样,为什么 TableView 在第二次打开时会向上滑动?我错过了什么吗?
编辑:它不仅特定于 tableviews,对于添加到窗口的任何视图都会发生这种情况。
我正在使用 3.2.3.GA
var win = Ti.UI.createWindow({ backgroundColor: '#ffffff', title: 'first window' });
var button = Ti.UI.createButton({ title: 'click me', left: 0, right: 0 });
var button2 = Ti.UI.createButton({ title: 'click me', left: 0, right: 0 });
var win2 = Ti.UI.createWindow({ backgroundColor: '#ffffff', leftNavButton: button2 });
var tableView = Ti.UI.createTableView({ top: 0, left: 0, right: 0, bottom: 0 });
var navigationWindow = Ti.UI.iOS.createNavigationWindow({ window : win2, modal: true});
var row = Ti.UI.createTableViewRow({ title: 'test' });
tableView.setData([row]);
win2.add(tableView);
win.add(button);
win.open();
button.addEventListener('click', function() {
navigationWindow.open();
});
button2.addEventListener('click', function() {
navigationWindow.close();
});