NSInvalidArgumentException

时间:2009-04-07 17:16:26

标签: iphone objective-c cocoa-touch

我在添加:(id)发件人后,从这个例程中崩溃,所以我可以确定哪个按钮调用它。当设置为普通的旧toggleView3时,它可以很好地工作。当detailView切换回docView时发生崩溃。

'NSInvalidArgumentException', reason: '*** -[RootViewController toggleView3]: unrecognized selector sent to instance 0x524a00' 2009-04-07 12:29:44.421 eTarot[11405:20b] Stack:

-(IBAction)toggleView3:(id)sender{


    if (detailViewController == nil) {
        [self loadDetailViewController];
    }

    UIView *docView = docViewController.view;
    UIView *detailView = detailViewController.view;

    [UIView beginAnimations:nil context:NULL];
    [UIView setAnimationDuration:1];
    [UIView setAnimationTransition:([docView superview] ? UIViewAnimationTransitionFlipFromRight : UIViewAnimationTransitionFlipFromLeft) forView:self.view cache:YES];

    if ([docView superview] != nil) {
        [detailViewController viewWillAppear:YES];
        [docViewController viewWillDisappear:YES];
        [docView removeFromSuperview];

        [self.view addSubview:detailView];
        [self.view insertSubview:detailNavigationBar aboveSubview:detailView];
        [docViewController viewDidDisappear:YES];
        [detailViewController viewDidAppear:YES];

    } else {
        [docViewController viewWillAppear:YES];
        [detailViewController viewWillDisappear:YES];
        [detailView removeFromSuperview];
        [detailNavigationBar removeFromSuperview];
        [self.view addSubview:docView];
        [detailViewController viewDidDisappear:YES];
        [docViewController viewDidAppear:YES];
    }
    [UIView commitAnimations];
}

2 个答案:

答案 0 :(得分:13)

当选择器的正确名称为toggleView3时,您正在向视图发送消息toggleView3: - 即使用冒号和参数。它们可能与您相似,但它们与Objective-C完全不同。

答案 1 :(得分:2)

该异常意味着您的应用程序在某处调用toggleView3而没有:sender参数。由于您的新方法需要参数,因此它与调用从未存在的方法相同。

如果你仔细查看调试器中的堆栈跟踪,它应该非常清楚它来自何处。构建结果中可能还有一个警告。