将输入视图添加到textfield iOS 8时出错

问题描述 投票:62回答:12

当我在iOS 8上为我的应用程序添加自定义输入视图时,我遇到了问题。这在iOS 7上完全正常,但是当切换到iOS 8时,一切都失败了。

这是堆栈跟踪:

2014-06-03 21:23:54.237 MyApp[1910:47245] *** Terminating app due to uncaught exception 'UIViewControllerHierarchyInconsistency', reason: 'child view controller:<UICompatibilityInputViewController: 0x1103f9d40>
should have parent view controller:<StopChooser: 0x11083e200> but requested parent is:<UIInputWindowController: 0x110858800>'
*** First throw call stack:
(
    0   CoreFoundation                      0x00000001042eee35 __exceptionPreprocess + 165
    1   libobjc.A.dylib                     0x0000000103b919a0 objc_exception_throw + 45
    2   CoreFoundation                      0x00000001042eed6d +[NSException raise:format:] + 205
    3   UIKit                               0x00000001023d94cd -[UIViewController _addChildViewController:performHierarchyCheck:notifyWillMove:] + 184
    4   UIKit                               0x0000000102977a2b -[UIInputWindowController changeToInputViewSet:] + 416
    5   UIKit                               0x0000000102973f56 -[UIInputWindowController moveFromPlacement:toPlacement:starting:completion:] + 185
    6   UIKit                               0x000000010297826a -[UIInputWindowController setInputViewSet:] + 526
    7   UIKit                               0x0000000102973c97 -[UIInputWindowController performOperations:withAnimationStyle:] + 50
    8   UIKit                               0x00000001027559bb -[UIPeripheralHost(UIKitInternal) setInputViews:animationStyle:] + 1054
    9   UIKit                               0x0000000102422afd -[UIResponder becomeFirstResponder] + 468
    10  UIKit                               0x00000001023235d3 -[UIView(Hierarchy) becomeFirstResponder] + 99
    11  UIKit                               0x00000001029cdbfb -[UITextField becomeFirstResponder] + 51
    12  UIKit                               0x0000000102655d61 -[UITextInteractionAssistant(UITextInteractionAssistant_Internal) setFirstResponderIfNecessary] + 177
lib: terminating with uncaught exception of type NSException
    (lldb) 

相关部分是前几行。有人可以解释一下吗?我所说的就是myTextview.inputView = keyboard;键盘是在故事板中创建并通过IBOutlet链接的UIView。

ios objective-c ios8
12个回答
111
投票

我之前遇到过这个问题。

问题:

  • 您必须确保分配给inputViewinputAccessoryView的视图不属于任何父视图。当您从ViewController中的xib创建这些视图时,默认情况下它们被设置为superview的子视图。

Tiputs解决方案:

  • 在您将分配给removeFromSuperviewinputView的视图上使用方法inputAccessoryView

0
投票

我的大部分答案都与代码更改有关。我发现在主视图中删除UIView的插座修复了它。 https://stackoverflow.com/a/40037236/464313


0
投票

我对此问题的解决方案是向inputView添加视图,但不向父级添加视图控制器。


0
投票

当我从故事板中返回任何视图作为inputAccessoryView时,我遇到了同样的错误。我用childViewController修复它。看我的答案here


18
投票

就在becomeFirstResponder之前删除您用于从superview输入的视图:

mTextField.inputView = mInputVeiw;
[mInputVeiw removeFromSuperview];
[mTextField becomeFirstResponder];

希望能帮助到你。


3
投票

您必须确保分配给inputViewinputAccessoryView的视图不属于任何父视图。

这个错误特别令人烦恼,因为在故事板中创建的任何“输入视图”(因此添加到VC的view)都不能设置为inputViewinputAccessoryView而不会导致此崩溃。

如果输入视图未添加到VC的view,则输入视图将无法在Interface Builder Storyboard中进行可视编辑。它仅在Storyboard的左侧窗格中可见。

How to connect Xcode Storyboard's "Simulated Metrics" toolbar to an actual IBOutlet UIToolbar?

我更喜欢直接在故事板中与inputAccessoryView建立IB连接。这导致了这次崩溃。我找到的解决方案是将辅助IBOutlet连接到Storyboard中的视图,然后在viewDidLoad中将其从超级视图中删除,然后立即分配给inputAccessoryView。不确定我是否会最终使用它。

- (void)viewDidLoad {

    // ...

    [self.keybordView removeFromSuperview];
    self.inputAccessoryView = self.keybordView;
}

2
投票

我想到了。我不确定之前的问题是什么,而不是在界面构建器中链接UIView,而是以编程方式创建了一个UIView,它工作正常。


2
投票

我的问题是我已经命名了一个有textField'inputAccessoryView'的视图......

@property (weak, nonatomic) IBOutlet CustomView *inputAccessoryView;

错误:

Terminating app due to uncaught exception
'UIViewControllerHierarchyInconsistency', reason: 'child view
controller:<UICompatibilityInputViewController: 0x7fed7063a1a0> should
have parent view controller:<MyViewController: 0x7fed70606f00> but
requested parent is:<UIInputWindowController: 0x7fed710cde00>'

解:

检查命名;如果不需要,不要覆盖。


1
投票

当我尝试在UITextField中设置我的UIDatePicker时遇到了同样的问题

- (void)setupViews {
    ...
    dobField.inputView = aDatePicker; // Here was the problem
    ...
}

我的解决方案,我只是在ViewDidLoad中“分配”和“初始化”我的datePicker

- (void)viewDidLoad
{
    [super viewDidLoad];
    // Do any additional setup after loading the view.
    ...
    aDatePicker = [[UIDatePicker alloc] init]; // My solution
    ...
}

1
投票

我找到了以编程方式创建UIView的解决方案(如Milo所建议的那样),但是当它像@property一样使用时会崩溃。在我的例子中,我需要在viewDidLoad中创建UIPickerView实例并协助UITextView inputView。当我需要访问pickerView时,我就这样得到它

UIPickerView *picker = (UIPickerView *)self.myTextField.inputView;

1
投票

是的,Tuyen Nguyen解决方案对我不起作用。在iOS 8 / Xcode 6中设置inputAccessoryView对我有用的不是removeFromSuperview而是:

[[UIApplication sharedApplication].keyWindow addSubview:**MyViewToBeTheUIAccessoryView**];

我希望这可以帮助别人。


0
投票

removeFromSuperView中调用viewDidLoad似乎在模态中不能正常工作。我最终设置隐藏的视图,然后从viewDidAppear中的superView中删除它。

© www.soinside.com 2019 - 2024. All rights reserved.