Cocoa touch NSInvalidArgumentException原因键盘隐藏?

Cocoa touch NSInvalidArgumentException原因键盘隐藏?,cocoa-touch,exception,Cocoa Touch,Exception,这里怎么了 - (IBAction)textFieldDidEndEditing:(id)sender { if(!_isEditing ) return; UITextField* textField = (UITextField*)sender; NSString* newValue = [textField text]; UITableViewCell* cell = [self GetCellFromTextField:textField]

这里怎么了

- (IBAction)textFieldDidEndEditing:(id)sender
{
    if(!_isEditing )
        return;
    UITextField* textField = (UITextField*)sender;
    NSString* newValue = [textField text];
    UITableViewCell* cell = [self GetCellFromTextField:textField];
    NSString* fieldName =[(UILabel*)[self GetLabelHeaderFromCell:cell] text];   
    NSIndexPath* indexPath= [self GetIndexPathForCell:cell];
    [PersonalSection SetFieldValue:newValue AndFieldName:fieldName UsingIndexPath:indexPath AndPersonalInformation:self.personalInfoInUse];

    _trackingEditTextField=nil;
    [fieldName release];
    _isEditing = FALSE;

}

- (IBAction)textFieldDidBeginEditing:(id)sender
{
    _trackingEditTextField=(UITextField*)sender;
}

-(IBAction)textFieldDidChange
{
    _isEditing=YES;
    self.navigationItem.rightBarButtonItem = saveButton;
    self.navigationItem.leftBarButtonItem = cancelButton;
}

- (BOOL)textFieldShouldReturn:(UITextField *)textField {
    [_trackingEditTextField resignFirstResponder];
    return NO;
}

-(void)KeyboardDidShow:(NSNotification*) notification
{
    if ( keyboardShown )
        return;

    CGRect frame = tableView.frame;
    frame.size.height -= 165;
    tableView.frame = frame;
    [tableView scrollToRowAtIndexPath:[self GetIndexPathForTextView:_trackingEditTextField] atScrollPosition:0 animated:YES];
    keyboardShown = YES;
}

- (void)keyboardWasHidden:(NSNotification *)notification {
    if ( keyboardShown ) {

        CGRect frame = tableView.frame;
        frame.size.height += 165;
        tableView.frame = frame;
        keyboardShown = NO;

    }
}

当尝试退出第一响应者时(即,当我单击键盘上的“完成”按钮时),但键盘仍在显示,并且它尚未进入keyboardWasHidden,这是UIKeyboardWillHideNotification的接收者时,会触发异常。我正在通过以下代码行收听通知

[[NSNotificationCenter defaultCenter]addObserver:self selector:@selector(keyboardWasHidden::) name:UIKeyboardWillHideNotification object:nil];
所以这是一个小错误, 选择器“keyboardWasHidden::”应为“keyboardWasHidden:”

希望对任何人都有用