Quantcast
Channel: Appcelerator Developer Center Q&A Unanswered Questions 20
Viewing all articles
Browse latest Browse all 8068

Left Swipe not working on iOS simulator for NavigationWindow

$
0
0

I have discovered a very strange behavior: the left swipe from the left edge of the iOS simulator when in a NavigationWindow does'n allow to go back to the parent window. The strange thing is that it works fine on the device.

this a sample code to test it

var win = Ti.UI.createWindow({
    backgroundColor: "white"
});
 
var navWin = Ti.UI.iOS.createNavigationWindow({
    window: win
});
 
 
var win2 = Ti.UI.createWindow({
    backgroundColor: "green",
    title: "ciao"
});
 
var btn = Ti.UI.createButton({
    title: "ciao"
});
 
win.add(btn);
btn.addEventListener("click", function() {
    navWin.openWindow(win2);
});
 
 
navWin.open();
I am using TiStudio on Mac OS X with SDK 3.5.0.

Viewing all articles
Browse latest Browse all 8068

Trending Articles