对...- UIViewController遏制的开始/结束外观转换的不平衡调用

时间:2012-07-19 01:50:50

标签: ios uiviewcontroller uinavigationcontroller uikit uitabbarcontroller

enter image description here

好的,iOS 5 Apple引入了视图控制器容器(太棒了!)

以上是我的应用层的外观。 TabBar包含NavController包含ViewController(容器),它包含2个表视图,由分段控件切换。

当我选择一个表格单元格时,它会轻松推送新视图。但是,如果我按下detailViewController中的按钮,我希望它以模态方式显示MFMailComposeViewController。这简要介绍了一下,然后立即解散了自己。我得到的错误日志是:

  

UITabBarController的开始/结束外观转换的非平衡调用

现在,这意味着我试图呈现一个视图,而另一个仍然显示或在运行时循环,我已经尝试添加延迟来阻止这一点,但没有任何作用。我添加了所有代理,并正确导入了我的所有库。

我认为这可能与我如何从原始tableview推送新视图或如何将视图加载到容器中有关。该项目使用Xcode的Tab Bar应用程序模板的基本代码,您知道。这是代码:

ViewController / Container

- (void)viewDidLoad
{
    [super viewDidLoad];

    // Alloc Init View Controllers
    menuDrinksViewController = [[MenuDrinksViewController alloc] init];
    menuFoodViewController = [[MenuFoodViewController alloc] init];

    // Create Parent/Child relationship
    [menuFoodViewController didMoveToParentViewController:self];
    [self addChildViewController:menuFoodViewController];

    [menuDrinksViewController didMoveToParentViewController:self];
    [self addChildViewController:menuDrinksViewController];

    [appearanceClass setBackgroundImage:self.view];

    // segmented controller
    segmentedControl = [[SVSegmentedControl alloc] initWithSectionTitles:[NSArray arrayWithObjects:@"              Eat              ", @"               Drink               ", nil]];
    [segmentedControl addTarget:self action:@selector(segmentAction:) forControlEvents:UIControlEventValueChanged];
    [appearanceClass setSegmentedControl:segmentedControl];
    [self.view addSubview:segmentedControl];

    //self.view.backgroundColor = [UIColor redColor];

    // Add and Size subviews
    [self.view addSubview:menuFoodViewController.view];
    menuFoodViewController.view.frame = CGRectMake(0, 39, 320, self.view.frame.size.height - 40 + 1);
    menuDrinksViewController.view.frame = CGRectMake(0, 39, 320, 327 + 1);
}


-(IBAction)segmentAction:(id)selector
{
    // it's a custom segmented control, dw bout the code.
    if (segmentedControl.selectedIndex == 0)
    {
        [self.view addSubview:menuFoodViewController.view];
        [menuDrinksViewController.view removeFromSuperview];
    }
    else if (segmentedControl.selectedIndex == 1)
    {
        [self.view addSubview:menuDrinksViewController.view];
        [menuFoodViewController.view removeFromSuperview];
    }

}

TableViewController

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
    MenuFoodDetailViewController *menuFoodDetailViewController = [[MenuFoodDetailViewController alloc] initWithNibName:nil bundle:nil];
    //MenuFoodDetailViewController *menuFoodDetailViewController = [[MenuFoodDetailViewController alloc] init];

    [self.parentViewController.navigationController pushViewController:menuFoodDetailViewController animated:YES];
    [tableView deselectRowAtIndexPath:indexPath animated:NO];
}

ButtonPress来自详细视图控制器的代码。

- (void)showMailComposer
{
    // attempt to delay the presentModalView call, doesnt work...
    double delayInSeconds = 0.1;
    dispatch_time_t popTime = dispatch_time(DISPATCH_TIME_NOW, delayInSeconds * NSEC_PER_SEC);
    dispatch_after(popTime, dispatch_get_main_queue(), ^(void){
        [self.navigationController presentModalViewController:mailComposeViewController animated:YES];
    });
}

我知道要问这个问题很多,但是我已经好几天了。 所有与视图无关的代码,即MFMailViewComposer工作正常,我已在其他应用程序中测试过。

我尝试了各种各样的变化来推动新的模态视图,即 self.parentViewController.navigationController presentModal...(等)

什么都不起作用= /

2 个答案:

答案 0 :(得分:3)

原来这是iOS5中的一个错误。在一个单独的项目上重新创建代码后,它工作。所以我将问题追溯到iOS5外观定制协议,当我尝试更改UINavigationBar中的字体时,它会导致MFMailComposeViewController中的错误和iOS6中的另一个模态视图。

我已向Apple提交雷达

答案 1 :(得分:0)

我在两天前遇到了同样的问题..

试试这个..

当您按下'detailViewController'上的按钮时,您试图以模态方式呈现MFMailComposeViewController,对吗?

因此,抛出异常的一个原因是,只要您以模态方式显示MFMailComposeViewController,就会释放'detailViewController'。因此,MFMailComposeViewController无法返回'detailViewController'。

检查你是否在'detailViewController'上使用了autorelease,或者在'detailViewController'的析构函数中放置一个断点并进行调试。