I'm having problems trying to block the orientations in some views, but the code is not working property.
I'm using this lines in every view:
- (BOOL)shouldAutorotate
{
return YES;
}
- (NSUInteger)supportedInterfaceOrientations
{
if ([[UIDevice currentDevice] userInterfaceIdiom] == UIUserInterfaceIdiomPhone) {
return UIInterfaceOrientationMaskPortrait;
} else {
return UIInterfaceOrientationMaskAll;
}
}
- (UIInterfaceOrientation)preferredInterfaceOrientationForPresentation
{
return UIInterfaceOrientationPortrait;
}
It almost work in the views that are using the UINavigationController, but in the ones that use the UITabBarController is where i'm having big problems, because it seams that the code is not been called.
Ok I solve it, you have to subclass UINavigationController and UITabBarController, so here is the code:
//cCustomNavigationController.h file
#import <UIKit/UIKit.h>
@interface cCustomNavigationController : UINavigationController <UINavigationControllerDelegate>
@end
//cCustomNavigationController.m file
#import "cCustomNavigationController.h"
@interface cCustomNavigationController ()
@end
@implementation cCustomNavigationController
- (BOOL)shouldAutorotate {
return [self.visibleViewController shouldAutorotate];
}
- (NSUInteger)supportedInterfaceOrientations {
return [self.visibleViewController supportedInterfaceOrientations];
}
- (UIInterfaceOrientation)preferredInterfaceOrientationForPresentation {
return [self.visibleViewController preferredInterfaceOrientationForPresentation];
}
@end
//cCustomTabController.h file
#import <UIKit/UIKit.h>
@interface cCustomTabController : UITabBarController <UITabBarControllerDelegate>
@end
//cCustomTabController.m file
#import "cCustomTabController.h"
@interface cCustomTabController ()
@end
@implementation cCustomTabController
- (BOOL)shouldAutorotate {
return [self.selectedViewController shouldAutorotate];
}
- (NSUInteger)supportedInterfaceOrientations {
return [self.selectedViewController supportedInterfaceOrientations];
}
- (UIInterfaceOrientation)preferredInterfaceOrientationForPresentation {
return [self.selectedViewController preferredInterfaceOrientationForPresentation];
}
@end
now you just have to create your TabBarController or your NavigationController using this classes where ever you need it i.e.
//For the UINavigationController
UINavigationController *navigationController = [[cCustomNavigationController alloc] init];
//For the UITabBarController
UITabBarController *tabController = [[cCustomTabController alloc] init];
I hope this help you guys.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With