在tabview控制器中禁用自动旋转视图 [英] Disable autorotate for view in tabview controller

查看:81
本文介绍了在tabview控制器中禁用自动旋转视图的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

您好我如何禁用tabview控制器中的视图的自动旋转?

Hi how i can disable the autorotation for a view in a tabview controller??

我已尝试在导航类中禁用,但这是不可能的。

i have testet to disable in a navigationclass, but thats not possible.

这是我在AppDelegate.m中的didFinishLaunching。

Thats my didFinishLaunching in the AppDelegate.m.

我希望每个人都有一个想法?

I hope everyone have an idea??

谢谢!

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
 {
// Set the application defaults
NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults];
NSDictionary *appDefaults = [NSDictionary dictionaryWithObject:@"YES"
                                                        forKey:@"myKeyName"];
[defaults registerDefaults:appDefaults];
[defaults synchronize];

[self setupFetchedResultsController];

if (![[self.fetchedResultsController fetchedObjects] count] > 0 ) {
    NSLog(@"!!!!! ~~> There's nothing in the database so defaults will be inserted");
    [self importCoreDataDefaultRoles];
    [self importCoreDataDefaultMaterials];
    [self importCoreDataDefaultPersons];
}
else {
    NSLog(@"There's stuff in the database so skipping the import of default data");
}

// TAB BAR
UITabBarController *tabBarController = (UITabBarController *)self.window.rootViewController;

// Override point for customization after application launch.
if ([[UIDevice currentDevice] userInterfaceIdiom] == UIUserInterfaceIdiomPad) {

    NSLog(@"I'm an iPad");

    // *** Set up the Persons Split Views (2-Way Delegation & Pass Managed Object Context) *** //

    // Set up SPLIT VIEW for Persons
    UISplitViewController *splitViewController = [[tabBarController viewControllers] objectAtIndex:0];

    // Set up Split View MASTER view for Persons
    UINavigationController *personsMasterTVCnav = [splitViewController.viewControllers objectAtIndex:0];
    splitViewController.delegate = (id)personsMasterTVCnav.topViewController;
    PersonsTVC *personsTVC = [[personsMasterTVCnav viewControllers] objectAtIndex:0];
    personsTVC.managedObjectContext = self.managedObjectContext;

    // Set up Split View DETAIL view for Persons
    UINavigationController *personsDetailTVCnav = [splitViewController.viewControllers objectAtIndex:1];
    PersonDetailTVC *personDetailTVC = [personsDetailTVCnav.viewControllers objectAtIndex:0];

    // Set up MASTER and DETAIL delegation so we can send messages between views
    personsTVC.delegate = personDetailTVC;
    personDetailTVC.delegate = personsTVC;

    // *** Set up the Roles Views *** (Pass Managed Object Context)//
    UINavigationController *rolesTVCnav = [[tabBarController viewControllers] objectAtIndex:1];
    RolesTVC *rolesTVC = [[rolesTVCnav viewControllers] objectAtIndex:0];
    rolesTVC.managedObjectContext = self.managedObjectContext;

    // *** Set up the Materials Views *** (Pass Managed Object Context)//
    UINavigationController *materialsTVCnav = [[tabBarController viewControllers] objectAtIndex:2];
    MaterialsTVC *materialsTVC = [[materialsTVCnav viewControllers] objectAtIndex:0];
    materialsTVC.managedObjectContext = self.managedObjectContext;

    // Set delegate for splitViewController
    splitViewController.delegate = personDetailTVC;


}
else
{
    NSLog(@"I'm an iPhone or iPod Touch");

    // The Two Navigation Controllers attached to the Tab Bar (At Tab Bar Indexes 0 and 1)
    UINavigationController *personsTVCnav = [[tabBarController viewControllers] objectAtIndex:0];
    UINavigationController *rolesTVCnav = [[tabBarController viewControllers] objectAtIndex:1];
    UINavigationController *materialsTVCnav = [[tabBarController viewControllers] objectAtIndex:2];
    // The Persons Table View Controller (First Nav Controller Index 0)
    PersonsTVC *personsTVC = [[personsTVCnav viewControllers] objectAtIndex:0];
    personsTVC.managedObjectContext = self.managedObjectContext;


    // The Roles Table View Controller (Second Nav Controller Index 0)
    RolesTVC *rolesTVC = [[rolesTVCnav viewControllers] objectAtIndex:0];
    rolesTVC.managedObjectContext = self.managedObjectContext;

    // The Materials Table View Controller (Third Nav Controller Index 0)
    MaterialsTVC *materialsTVC = [[materialsTVCnav viewControllers] objectAtIndex:0];
    materialsTVC.managedObjectContext = self.managedObjectContext;
}

return YES;
}


推荐答案

旋转UIViewController,除了一个或者更多子视图



使用此方法:

Rotating a UIViewController except one or more subviews

Use this method:

-(void)counterRotateView:(UIView *)view
    toInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation
    duration:(NSTimeInterval)duration
{
    NSParameterAssert(view);

    CALayer* layer = view.layer;
    CABasicAnimation* animation;
    animation = [CABasicAnimation animationWithKeyPath:@"transform.rotation.z"];

    CGFloat tau = 0;
    switch (toInterfaceOrientation) {
        case UIInterfaceOrientationLandscapeLeft:
            tau = 0.5; break;
        case UIInterfaceOrientationLandscapeRight:
            tau = -0.5; break;
        case UIInterfaceOrientationPortraitUpsideDown:
            tau = 1; break;
        case UIInterfaceOrientationPortrait:
        default:
            break;
    }
    animation.toValue = [NSNumber numberWithFloat:tau * M_PI];

    animation.duration = duration;
    animation.cumulative = YES;
    animation.repeatCount = 1;
    animation.removedOnCompletion = NO;
    animation.fillMode = kCAFillModeForwards;

    [layer addAnimation:animation forKey:@"transform.rotation.z"];
}

并从此处调用:

-(void) willRotateToInterfaceOrientation:
    (UIInterfaceOrientation)toInterfaceOrientation
    duration:(NSTimeInterval)duration
{
    [self counterRotateView:someView
        toInterfaceOrientation:toInterfaceOrientation
        duration:duration];
}

这篇关于在tabview控制器中禁用自动旋转视图的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆