iOS UITextField resignFirstResponder on viewWillDisappear

标签 ios uitextview resignfirstresponder viewwilldisappear

我有一个带有两个简单屏幕的应用程序。第一个屏幕始终打开第二个屏幕的相同实例。第二个屏幕有一个文本字段和一个用于手动隐藏键盘按钮

viewWillDisappear 上的 resignFirstResponder 不起作用。

情况1:

  • 点击主屏幕上的 openSearchButton。
  • SearchViewController 已打开。
  • 点击文本字段。
  • 键盘变得可见。
  • 点击后退按钮。
  • 应用程序返回到第一个屏幕。
  • 点击主屏幕上的 openSearchButton。
  • (iOS 10.2) 屏幕短时间内全白。
  • SearchViewController 已打开。
  • 文本字段成为第一响应者,键盘变得可见。

情况2:

  • 点击主屏幕上的 openSearchButton。
  • SearchViewController 已打开。
  • 点击文本字段。
  • 键盘变得可见。
  • 点击隐藏键盘按钮
  • 键盘被隐藏。
  • 点击后退按钮。
  • 应用程序返回到第一个屏幕。
  • 点击主屏幕上的 openSearchButton。
  • SearchViewController 已打开。

代码:

         @implementation MainViewController
        -(void) viewDidLoad {
            [super viewDidLoad];
            UIStoryboard *sb = [UIStoryboardWithName:@"Main" bundle:nil];
            self.searchView = (SearchViewController*) [sb instantiateViewControllerWithIdentifier:@"searchView"];
        }

        - (IBAction)openSearchButtonClicked:(id)sender{
            [self.navigationController pushViewController:self.searchView animated:YES];
        }
        @end

        @implementation SearchViewController
        - (void)viewWillDisappear:(BOOL)animated{
            assert(self.searchTextField != nil);    
            [self.searchTextField resignFirstResponder];
            [super viewWillDisappear:animated];
        } 

        - (IBAction)hideKeyboardButtonClicked:(id)sender{
            [self.searchTextField resignFirstResponder];
        }
        @end

最佳答案

我已经通过解决方法解决了这个问题。重新打开 searchView 后,我检查了 textFieldDidBeginEditing 的堆栈跟踪。不知何故,UIKit 决定在文本字段上调用BecomeFirstResponder。

我的解决方案是这样的:在 View Controller 出现之前不允许文本字段成为第一响应者。但在 iOS 10.2 上仍然会出现闪烁白屏的情况。

- (void)viewDidAppear:(BOOL)animated{
    [super viewDidAppear:animated];
    self.allowToBecomeFirstResponser = YES;
}
- (BOOL)textFieldShouldBeginEditing:(UITextField *)textField{
    return self.allowToBecomeFirstResponser ;
}
- (void)viewWillDisappear:(BOOL)animated{
    self.allowToBecomeFirstResponser = NO;
    [super viewWillDisappear:animated];
}     

0 ??? 0x000000011d54d91c 0x0 + 4787067164, 
1 DEMO 0x000000010c24d880 main + 0, 
2 UIKit 0x000000010d60a227 -[UITextField _becomeFirstResponder] + 481, 
3 UIKit 0x000000010d04d28d -[UIResponder becomeFirstResponder] + 324, 
4 UIKit 0x000000010cf42e03 -[UIView(Hierarchy) becomeFirstResponder] + 99, 
5 UIKit 0x000000010d609ad7 -[UITextField becomeFirstResponder] + 51, 
6 UIKit 0x000000010cf42e3b -[UIView(Hierarchy) deferredBecomeFirstResponder] + 49, 
7 UIKit 0x000000010cf43144 __45-[UIView(Hierarchy) _postMovedFromSuperview:]_block_invoke + 175, 
8 UIKit 0x000000010cf43086 -[UIView(Hierarchy) _postMovedFromSuperview:] + 437, 
9 UIKit 0x000000010cf4cf4b -[UIView(Internal) _addSubview:positioned:relativeTo:] + 1604, 
10 UIKit 0x000000010cecf392 -[_UIParallaxDimmingView didMoveToWindow] + 123, 
11 UIKit 0x000000010cf4a9a0 -[UIView(Internal) _didMoveFromWindow:toWindow:] + 1482, 
12 UIKit 0x000000010cf4a68e -[UIView(Internal) _didMoveFromWindow:toWindow:] + 696, 
13 UIKit 0x000000010cf43112 __45-[UIView(Hierarchy) _postMovedFromSuperview:]_block_invoke + 125, 
14 UIKit 0x000000010cf43086 -[UIView(Hierarchy) _postMovedFromSuperview:] + 437, 
15 UIKit 0x000000010cf4cf4b -[UIView(Internal) _addSubview:positioned:relativeTo:] + 1604, 
16 UIKit 0x000000010cecbc38 __53-[_UINavigationParallaxTransition animateTransition:]_block_invoke + 2101, 
17 UIKit 0x000000010cf475ce +[UIView(Animation) performWithoutAnimation:] + 65, 
18 UIKit 0x000000010cecb072 -[_UINavigationParallaxTransition animateTransition:] + 1225, 
19 UIKit 0x000000010d01fe6c -[UINavigationController _startCustomTransition:] + 3038, 
20 UIKit 0x000000010d02b3fe -[UINavigationController _startDeferredTransitionIfNeeded:] + 386, 
21 UIKit 0x000000010d02bf47 -[UINavigationController __viewWillLayoutSubviews] + 43, 
22 UIKit 0x000000010d171509 -[UILayoutContainerView layoutSubviews] + 202,

关于iOS UITextField resignFirstResponder on viewWillDisappear,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41846155/

相关文章:

ios - UITableViewCell 中的 UITextView,如何在 tableView 滚动时退出 textview 的 firstResponder?

ios - 带有图像的 UIColor 颜色在 IOS 7 下不起作用

Ios 迭代 IBOutletCollection TextView

iphone - 如何在 iPhone 上扩展键盘渐变?

android - 为所有屏幕统一设计 Assets

ios - 如何使搜索栏像默认邮箱一样缩小效果

iphone - 搜索栏 ResignFirstResponder 隐藏项目

iphone - 为多个 UITextFields 辞职第一响应者

ios - 在 UISearchBar 中按 "x"时关闭键盘

ios - 尝试使用 Swift3 将图像上传到 CloudKit 时出错