iPhone - 如何在进入前景后恢复帧大小?

时间:2012-06-02 21:36:45

标签: iphone objective-c ios xcode cocoa-touch

我通过改变它的框架来改变UINavigationBar的高度。 但是如果我将应用程序发送到后台然后再打开它,它的高度将恢复到原始大小。我该如何解决这个问题?

1 个答案:

答案 0 :(得分:0)

您可以将帧写入资源文件,如plist或XML文件。然后在-(void)applicationWillEnterForeground:(UIApplication *)application' or - (void)applicationDidBecomeActive:(UIApplication *)application`中的app delegate文件中加载plist。我相信你也可以使用NSUserDefaults:

NSUserDefaults *frameSize = [NSUserDefaults standardUserDefaults];

//Put frame size into defaults
[sharedDefaults setObject:navigationBar.frame forKey:@"frame"];
[sharedDefaults synchronize];

然后在前面提到的App Delegate方法中,您可以执行以下操作:

self.viewController.navigationController.frame = [sharedDefaults objectForKey:@"frame"];

希望这会有所帮助,如果确实如此,请记得投票。

----------- ------------ EDIT

如果您查看此问题iOS selected tab,它会告诉您如何确定选择了哪个标签。他们基本上说的是首先在app委托中添加self.tabController.delegate = self,并确保app委托和带有标签栏的视图控制器符合UITabBarControllerDelegate协议。然后在带有标签栏的View Controller文件中,您可以使用协议中定义的此方法:

- (void)tabBarController:(UITabBarController *)tabBarController didSelectViewController:(UIViewController *)viewController {
    if (tabBarController.selectedIndex == 0) { 
    //The 0 is the first tab, but you can replace that with any other tab's index

         //Here you say that when said tab is selected, the navigation controller's frame is the stored length.
         self.navigationController.frame = [sharedDefaults objectForKey:@"frame"]; 
    }
    else{
         self.navigationController.frame = CGRectMake(frame, for, other, tabs);
    }
}