1

通过单击后退按钮,我保存UITextFieldsUIView. 当 a 中的信息UITextField不正确并且我单击后退按钮时,我想打开键盘,但我的视图消失了。如何阻止 UIView 消失并改为打开我的键盘。

我想我应该把我的代码放在 viewShouldDissapear 中,但是没有这样的方法。

这是我的代码:

- (void) viewWillDisappear:(BOOL)animated
{

if ([textField1 length] < 3 || [textField1 length] > 17) {

    tableView.contentInset = UIEdgeInsetsMake(65, 0, 10, 0);

    [tableView scrollToRowAtIndexPath:[NSIndexPath indexPathForRow:7 inSection:indexPath.section]
                     atScrollPosition:UITableViewScrollPositionTop animated:NO];

    [txtSerieSasiu becomeFirstResponder];
    return;
}

if (shouldSave)
    [self save];
}
4

2 回答 2

0

将此代码写入从按钮按下调用的选择器中,如果一切正常,则仅弹出/关闭您的视图控制器。如viewWillDisAppear您可以要求控制器取消消失。

于 2013-02-08T08:54:30.580 回答
0

我假设您在导航控制器上有后退按钮。
然后在此处添加一个自定义按钮,如果一切正确,则将其关闭,否则显示键盘

- (void)viewDidLoad
{
    [super viewDidLoad];
    UIButton *button =  [UIButton buttonWithType:UIButtonTypeCustom];
    [button setImage:[UIImage imageNamed:@"goback.png"] forState:UIControlStateNormal];
    [button addTarget:self action:@selector(popVC:) forControlEvents:UIControlEventTouchUpInside];
    [button setFrame:CGRectMake(0, 0, 32, 32)];
    self.navigationItem.leftBarButtonItem = [[UIBarButtonItem alloc] initWithCustomView:button];
}

- (void)popVC:(id)sender
{
    if (isValueCorrect) {
        [self.navigationController popViewControllerAnimated:YES];
    }
    else{
        [textView becomeFirstResponder];
    }
}
于 2013-02-08T09:01:07.123 回答