Titanium JIRA Archive
Appcelerator Community (AC)

[AC-1656] Navgation bar's glitchy in titanium SDK 3.3.0

GitHub Issuen/a
TypeBug
Priorityn/a
StatusClosed
ResolutionNeeds more info
Resolution Date2014-09-24T02:10:11.000+0000
Affected Version/sn/a
Fix Version/sn/a
Componentsn/a
LabelsTCSupportTriage, navigationGroup, navigationWindow
ReporterSamie Syed
AssigneeMauro Parra-Miranda
Created2014-09-20T16:45:53.000+0000
Updated2016-03-08T07:38:08.000+0000

Description

Since upgrading my sdk to titanium 3.0, when I open a new nav window from another window, it glitches up. I basically can see an empty window with the default back window, and then the screen renders. In titanium SDK 3.2.3 it is all fine

Attachments

FileDateSize
Photo 20-09-2014 17 39 04.png2014-09-20T16:45:53.000+000062255

Comments

  1. Motiur Rahman 2014-09-23

    Hello, We tested this issue with this test case, but we didn’t reproduce it. It works as expected in this testing environment and test case.

    Testing Environment:

    Titanium SDK: 3.3.0.GA Titanium CLI: 3.4.0-rc, iOS SDK:7.1 OS X Version: 10.9.4, Appcelerator Studio: 3.4.0
       var win1 = Titanium.UI.createWindow({
       	backgroundColor : 'red',
       	title : 'Red Window'
       });
       var navWin = Titanium.UI.iOS.createNavigationWindow({
       	window : win1
       });
       
       var button = Ti.UI.createButton({
       	title : 'Open Win!'
       });
       button.addEventListener('click', function(e) {
       	navWin.openWindow(win2);
       });
       
       win1.add(button);
       
       var win2 = Ti.UI.createWindow({
       	title : 'Gray Window',
       	backgroundColor : 'gray'
       });
       
       var button1 = Ti.UI.createButton({
       	title : 'Open Win!'
       });
       button1.addEventListener('click', function(e) {
       	navWin.openWindow(win3);
       });
       
       win2.add(button1);
       
       var win3 = Ti.UI.createWindow({
       	title : 'Blue Window',
       	backgroundColor : 'blue'
       });
       
       navWin.open();
       
       
       
    Thanks.
  2. Mauro Parra-Miranda 2014-09-24

    We will reopen this if the customer provides a working testcase. A base testcase is provided.
  3. Samie Syed 2014-09-24

    Hi, thanks for that. To reproduce the problem , can you please test it on a device. Iphone 4. On a simulator it runs fine, but on my iphone the bug appears.
  4. Mauro Parra-Miranda 2014-09-24

    [~mrahman]: Can you please report in which device did you tested?
  5. Samie Syed 2014-09-24

    Hi, I tested it on an IPhone 4 16GB.
  6. Samie Syed 2014-09-24

    And just so you guys are aware,my project is a Titanium Alloy project.

JSON Source