I have a video that I play. To use full screen in iOS 3.2 I use the MPMoviePlayerViewController (seems to only work with that Class). But if I want to build for iOS 3.0 I ob
Try this...
#ifdef IPHONE_OS_3.2 /* iOS 3.2 code */ #endif #ifdef IPHONE_OS_3.0 /* iOS 3.0 code */ #endif
...the offending code will get removed before the compiler sees it.