[TIMOB-15287] iOS7: TableView with SearchBar does not respect autoAdjustScrollViewInsets Window property
GitHub Issue | n/a |
---|---|
Type | Bug |
Priority | High |
Status | Open |
Resolution | Unresolved |
Affected Version/s | n/a |
Fix Version/s | n/a |
Components | iOS |
Labels | n/a |
Reporter | Rafael Kellermann Streit |
Assignee | Unknown |
Created | 2013-09-19T04:23:01.000+0000 |
Updated | 2018-02-28T20:03:22.000+0000 |
Description
Without searchBar in TableView, the property is respected.
var navWinAdd = Ti.UI.iOS.createNavigationWindow({
modal: true
});
var self = Ti.UI.createWindow({
autoAdjustScrollViewInsets: true,
extendEdges: [Ti.UI.EXTEND_EDGE_TOP],
title: "Models"
});
navWinAdd.setWindow(self);
var searchBar = Ti.UI.createSearchBar({
hintText: "Search"
});
var tableView = Ti.UI.createTableView({
top: 64,
search: searchBar
});
self.add(tableView);
navWinAdd.open();
Moving into 3.2.1 due to lack of remaining bandwidth for 3.2.0
Unfortunately out of time for 3.3.0. Bumping to 3.3.1.
Issue reproduces Titanium Command-Line Interface, CLI version 3.3.0, Titanium SDK version 3.3.0.GA iOS SDK: 7.1 iOS iPhone Simulator: 7.1
[~shameerj] can you give me a screenshot of this for me to take a look? thanks.