Titanium JIRA Archive
Titanium SDK/CLI (TIMOB)

[TIMOB-1091] Opening pickers over navbar may remove settings

GitHub Issuen/a
TypeBug
PriorityTrivial
StatusClosed
ResolutionCannot Reproduce
Resolution Date2012-07-25T12:30:55.000+0000
Affected Version/sn/a
Fix Version/sn/a
ComponentsiOS
Labelsapi
ReporterStephen Tramer
AssigneeNeeraj Gupta
Created2011-04-15T02:43:50.000+0000
Updated2012-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

  1. Stephen Tramer 2011-04-15

    Tagging.

  2. 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();
       

JSON Source