Im using iOS6 SDK and currently apple deprecated landscape mode. Is there any work around to use landscape iAds because my game only runs on landscape mode.
Thank you.
Im using iOS6 SDK and currently apple deprecated landscape mode. Is there any work around to use landscape iAds because my game only runs on landscape mode.
Thank you.
Landscape mode is not deprecated only the method
-(BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
has been deprecated. Now you can use below methods:-
- (BOOL)shouldAutorotate
{
return YES;
}
- (NSUInteger)supportedInterfaceOrientations
{
return UIInterfaceOrientationMaskAll;
}