[TIMOB-1091] Opening pickers over navbar may remove settings
GitHub Issue | n/a |
---|---|
Type | Bug |
Priority | Trivial |
Status | Closed |
Resolution | Cannot Reproduce |
Resolution Date | 2012-07-25T12:30:55.000+0000 |
Affected Version/s | n/a |
Fix Version/s | n/a |
Components | iOS |
Labels | api |
Reporter | Stephen Tramer |
Assignee | Neeraj Gupta |
Created | 2011-04-15T02:43:50.000+0000 |
Updated | 2012-07-26T22:25:25.000+0000 |
Description
In particular since the photo gallery, iPod, and Contacts set up their own navigation controllers for the picker, we may have a situation where the navigation bar gets messed up.
Comments
- Stephen Tramer 2011-04-15
Tagging.
- Stephen Tramer 2012-07-25
Cannot reproduce in SDK 2.2.0.f9e938d in iPhone Sim 5.1. Test code:
var win = Ti.UI.createWindow(); var b = Ti.UI.createButton({ title:'click me', width:150, height:50 }); b.addEventListener('click', function() { Ti.Media.openPhotoGallery(); }); win.add(b); var group = Ti.UI.createTabGroup({ barColor:'green' }); group.addTab(Ti.UI.createTab({ window:win, })) group.open();