256b-winter-2010/degotchafier
From CCRMA Wiki
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.
- course homepage
- (in)frequently asked questions (please post, we are watching this page!)
weblink provided solutions
- If you are using a UITabBarController and the auto-rotate functions do not work, follow [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];