Reputation: 53
In appcelerator I'm trying to open a window with this code
var self = Ti.UI.createWindow({
backgroundColor: '#616161',
color: 'blue',
exitOnClose: true,
height: 1000,
navBarHidden: true,
width:Ti.UI.FILL,
_moving: false,
_startx: 0,
_endx: 0,
top:0,
left:0
});
but the window in iphone shrinks strangely with status bar to about 80% of screen... I tried in simulator and in device and in both places it keeps appearing like this
Any ideas why it might happen? ios 9.3 and appcelerator sdk 5.2.1GA Thanks
Upvotes: 1
Views: 150
Reputation: 740
Be sure you have correct splash
image for your device or simulator , you can use this awesome tool TiCons , it will generate all splash
, icon
and assets
sizes for you
Upvotes: 0
Reputation: 73
I have had this issue in the past and for me it was not having the right sized splash screen, and that caused the app run in the smaller iphone 4 size. Make sure you have all these sizes in you project
iPhone 4/4S Splash screen 640 x 960 72 [email protected]
iPhone 5/5C/5S iPod touch 5th generation Splash screen 640 x 1136 72 [email protected]
iPhone 6 Splash screen 750 x 1334 72 [email protected]
iPhone 6 Plus landscape Splash screen 2208 x 1242 72 [email protected]
iPhone 6 Plus portrait Splash screen 1242 x 2208 72 [email protected]
I got this info from and more details can be found here
Upvotes: 3