Difference between revisions of "256b-winter-2010/degotchafier"

From CCRMA Wiki
Jump to: navigation, search
(weblink provided solutions)
(student provided solutions)
Line 12: Line 12:
 
* certain objects, such as UIAlertView's, do not switch to landscape mode even when your plist is set.
 
* certain objects, such as UIAlertView's, do not switch to landscape mode even when your plist is set.
 
To make certain that everything starts in landscape, drop in: [application setStatusBarOrientation:UIInterfaceOrientationLandscapeRight animated:NO]; in your didFInishLaunching. If you would like your home button to the left, use: [application setStatusBarOrientation:UIInterfaceOrientationLandscapeLeft animated:NO];
 
To make certain that everything starts in landscape, drop in: [application setStatusBarOrientation:UIInterfaceOrientationLandscapeRight animated:NO]; in your didFInishLaunching. If you would like your home button to the left, use: [application setStatusBarOrientation:UIInterfaceOrientationLandscapeLeft animated:NO];
 +
 +
* Using multiple nib files results in a SIGABRT "unrecognized selector" when you run IBActions off of your NavController or TabBar.
 +
You must set the class of BOTH the new nib file's "File's Owner" and the NavController or TabBar's individual tab (accessed by clicking the tab itself, not the tab picture) which leads to the nib file, to the same ViewController class.

Revision as of 02:53, 3 March 2010

Music 256b De-Gotcha-Fier

This page is intended to host solutions to those annoying little things that pop up while we're programming, especially those that take hours to solve and end up being very simple solutions. It is often difficult to find that "silver bullet" solution to a problem, but this wiki is dedicated to just that.


weblink provided solutions

  • If you are using a UITabBarController and the auto-rotate functions do not work, follow this simple tutorial.

student provided solutions

  • certain objects, such as UIAlertView's, do not switch to landscape mode even when your plist is set.

To make certain that everything starts in landscape, drop in: [application setStatusBarOrientation:UIInterfaceOrientationLandscapeRight animated:NO]; in your didFInishLaunching. If you would like your home button to the left, use: [application setStatusBarOrientation:UIInterfaceOrientationLandscapeLeft animated:NO];

  • Using multiple nib files results in a SIGABRT "unrecognized selector" when you run IBActions off of your NavController or TabBar.

You must set the class of BOTH the new nib file's "File's Owner" and the NavController or TabBar's individual tab (accessed by clicking the tab itself, not the tab picture) which leads to the nib file, to the same ViewController class.