I have a full screen PNG I want to display on splash. Only one error there, and I have no idea what size to put in every drawable folder...
I’ve just upgraded to Xcode 4.5 GM and found out that you can now apply the ‘4″ Retina’ size to your view controller in the storyboard. Now if I...
Is there any way to determine the category of screen size of the current device, such as small, normal, large, xlarge? Not the density, but the screen size. 12...
I’m trying to force the “portrait” mode for my application because my application is absolutely not designed for the “landscape” mode. After reading some forums, I added these lines...
I have one of my activities which I would like to prevent from rotating because I’m starting an AsyncTask, and screen rotation makes it restart. Is there a way...
My application has the following flow screens : Home->screen 1->screen 2->screen 3->screen 4->screen 5 Now I have a common log out button in each screens (Home/ screen 1 /...
The new iPhone 5 display has a new aspect ratio and a new resolution (640 x 1136 pixels). What is required to develop new or transition already existing applications...
How can one get the dimensions of the screen in iOS? Currently, I use: lCurrentWidth = self.view.frame.size.width; lCurrentHeight = self.view.frame.size.height; in viewWillAppear: and willAnimateRotationToInterfaceOrientation:duration: The first time I get...
I created some custom elements, and I want to programmatically place them to the upper right corner (n pixels from the top edge and m pixels from the right...