Titanium JIRA Archive
Titanium SDK/CLI (TIMOB)

[TIMOB-17542] iOS: Window title blinks

GitHub Issuen/a
TypeBug
PriorityNone
StatusClosed
ResolutionCannot Reproduce
Resolution Date2017-08-24T20:58:19.000+0000
Affected Version/sRelease 3.3.0
Fix Version/sn/a
ComponentsiOS
LabelsTCSupport, animation, blink, title, window
ReporterMatej
AssigneeEric Merriman
Created2014-06-23T11:57:36.000+0000
Updated2017-08-24T20:58:19.000+0000

Description

Window title in a sub window blinks after is window opened instead of making animation. See attached videos... app.js
var win = Ti.UI.createWindow({
	title: "Window_1",   	
   	backgroundColor: "white"
});

var openNewWinBT = Ti.UI.createButton({
	title: "Open new window",
	width: 200, height: 40,
	color: "white",
	backgroundColor: "#DA4B63",
	borderRadius: 6
});

var tabGroup = Ti.UI.createTabGroup();

openNewWinBT.addEventListener("click", function() {
	var sub = Ti.UI.createWindow({
		title: "Window_2",
	   	backgroundColor: "white"
	});
	
	tabGroup.activeTab.open(sub);
});


win.add(openNewWinBT);
tabGroup.addTab(Ti.UI.createTab({ window: win }));
tabGroup.open();

Attachments

FileDateSize
correctAnimation.mov2014-06-23T11:57:37.000+0000657053
windowTitle.mov2014-06-23T11:57:36.000+0000655179

Comments

  1. Shuo Liang 2014-06-26

    Hi, Watched the two videos, the windows title animation looks similar. I can see any blinks. Would you please show or explain me more detail about your problem. Regards, Shuo
  2. Matej 2014-06-26

    Hi, well if you can't see any difference you should go to see a doctor (I am just joking... :D). So... If you look at the "General" title it comes from the right side (Nice animation) however Window_2 title just appear (No animation) ,so it is something like a blink. Try to play the video slower.
  3. Shuo Liang 2014-06-26

    Oh, I see the blinks. would you please provide us a test case for the correct Animation, that will be real helpful to address this blink problem. Thank your for the ticket.
  4. Matej 2014-06-26

    The Video with correct animation is done in the settings. I have no idea how to fix this issue in Ti.
  5. Shuo Liang 2014-06-26

    Oh I see what you mean. I will notice our engineer team to figure out how to fix it. Thanks again for your report.
  6. Motiur Rahman 2014-07-19

    Hello, I have tested this issue. It’s not a bug. IOS window title doesn’t blink. It's working as expected.

    Testing Environment:

    Titanium SDK: 3.2.3.GA, 3.3.0.GA Titanium CLI: 3.3.0 IOS SDK: 7.1 (iPhone Retina 3.5 inch, iPhone Retina 4 inch), OS X Version: 10.9.3, Appcelerator Studio: 3.3.0

    Steps to Test:

    1. Create a Classic project. 2. Paste this code in app. js file. 3. Run this code with the testing environment.

    Test Case

       
       var win = Ti.UI.createWindow({
       	title : "Window_1",
       	backgroundColor : "white"
       });
       
       var openNewWinBT = Ti.UI.createButton({
       	title : "Open new window",
       	width : 200,
       	height : 40,
       	color : "white",
       	backgroundColor : "#DA4B63",
       	borderRadius : 6
       });
       
       var tabGroup = Ti.UI.createTabGroup();
       
       openNewWinBT.addEventListener("click", function() {
       	var sub = Ti.UI.createWindow({
       		title : "Window_2",
       		backgroundColor : "white"
       	});
       
       	tabGroup.activeTab.open(sub);
       });
       
       win.add(openNewWinBT);
       tabGroup.addTab(Ti.UI.createTab({
       	window : win
       }));
       tabGroup.open(); 
       
    Thanks.
  7. Matej 2014-08-08

    Window title is still blinking... how can be this expected? Have you seen the difference (in videos)? // Another example http://youtu.be/EF67uBCyUBU?t=3m11s
  8. Mauro Parra-Miranda 2014-08-21

    Thanks for your report! The priority will be set by the Platform Team.
  9. Shameer Jan 2014-08-27

    Issue still exists with SDK Version 3.3.0 and 3.4.0 Titanium Command-Line Interface, CLI version 3.3.0, Titanium SDK version 3.3.0.GA Titanium SDK version 3.4.0.GA Appcelerator Studio, build: 3.3.0.201407111535 iOS SDK: 7.1 iOS iPhone Simulator: 7.1
  10. Lee Morris 2017-08-24

    I am unable to reproduce this issue with the following environment; iPhone 6 (10.3) Studio 4.9.1.201707200100 Ti SDK 6.1.2 GA Appc CLI 6.2.3 Ti CLI 5.0.14 Alloy 1.9.13 Xcode 8.2 (8C38) Node v4.8.2 Java 1.8.0_131

JSON Source