tags:

views:

30

answers:

1

It's weird that my app does not zoom in when running in the application manager of the iphone like the other apps do. Do you think the problem is related to the simulator? Or have I done something wrong in the settings of the project?

+1  A: 

If the background of your window is black, and you have no Default.png image in your bundle, then the zoom effect may be unnoticeable. It's even worse if you don't have a status bar.

mahboudz
Hi Sir. Thanks. Could you please elaborate more about the Default.png image in the bundle?
sasayins
THanks alot!! I figured it out. Thanks again.
sasayins
Whatever image is in your Default.png will get displayed between the moment that your app is first tapped until your first viewController handles its viewDidLoad (or viewDidAppear) method. It is a good way to make the user think that your app is very responsive, when in fact your app is still loading.
mahboudz