首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >iOS UITextField.inputView误差

iOS UITextField.inputView误差
EN

Stack Overflow用户
提问于 2014-09-10 20:25:02
回答 1查看 198关注 0票数 2

我试图将自定义inputView添加到tableViewCell输入字段,但是当我这样做时,我在应用程序和应用程序崩溃中得到了混合视图。我看过以前的解决方案,但没有发现对我有用。你能帮我吗?

代码语言:javascript
复制
#pragma mark - TableView data source

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
    // Return the number of sections.
    return 1;
}


- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
    // Return the number of rows in the section.
    return self.taskQuestionObjects.count;
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    // Do dequeue the custom cell here
    TaskManagerQuestionAndAnswerTableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:taskQuestionAnswerCellIdentifier];

    TaskManagerQuestion *questionObject = self.taskQuestionObjects[indexPath.row];

    cell.taskQuestionLabel.text = questionObject.title;

    cell.taskAnswerTextField.inputView = [[[NSBundle mainBundle] loadNibNamed:@"TaskManagerPickerKeyboardViewController" owner:self options:nil] objectAtIndex:0];

    return cell;
}

控制台日志:

代码语言:javascript
复制
    2014-09-12 12:26:19.615 TaskManager[24317:60b] Unable to simultaneously satisfy constraints.
    Probably at least one of the constraints in the following list is one you don't want. Try this: (1) look at each constraint and try to figure out which you don't expect; (2) find the code that added the unwanted constraint or constraints and fix it. (Note: If you're seeing NSAutoresizingMaskLayoutConstraints that you don't understand, refer to the documentation for the UIView property translatesAutoresizingMaskIntoConstraints) 
(
    "<NSLayoutConstraint:0x167906e0 V:[UITableView:0x16bc6c00(417)]>",
    "<NSLayoutConstraint:0x167932d0 V:[_UILayoutGuide:0x16792e00]-(0)-[UITableView:0x16bc6c00]>",
    "<NSLayoutConstraint:0x16793360 V:[UITableView:0x16bc6c00]-(87)-[_UILayoutGuide:0x16792ff0]>",
    "<_UILayoutSupportConstraint:0x167917d0 V:[_UILayoutGuide:0x16792e00(64)]>",
    "<_UILayoutSupportConstraint:0x16791770 V:|-(0)-[_UILayoutGuide:0x16792e00]   (Names: '|':UIView:0x16791280 )>",
    "<_UILayoutSupportConstraint:0x16791890 V:[_UILayoutGuide:0x16792ff0(0)]>",
    "<_UILayoutSupportConstraint:0x16791830 _UILayoutGuide:0x16792ff0.bottom == UIView:0x16791280.bottom>",
    "<NSAutoresizingMaskLayoutConstraint:0x1677d2f0 h=--& v=--& V:[UIView:0x16791280(480)]>"
)

Will attempt to recover by breaking constraint 
<NSLayoutConstraint:0x167906e0 V:[UITableView:0x16bc6c00(417)]>

Break on objc_exception_throw to catch this in the debugger.
The methods in the UIConstraintBasedLayoutDebugging category on UIView listed in <UIKit/UIView.h> may also be helpful.
2014-09-12 12:26:38.039 TaskManager[24317:60b] *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: 'Can't add self as subview'
*** First throw call stack:
(0x30228f83 0x3aaa3ccf 0x30228ec5 0x32a51535 0x32a514bf 0x32c19f71 0x32a57ac5 0x32c19879 0x32bd6b27 0x32af3d63 0x32af3b6d 0x32af3b05 0x32a45d59 0x326c362b 0x326bee3b 0x326beccd 0x326be6df 0x326be4ef 0x32a493e1 0x301f420b 0x301f36db 0x301f1ecf 0x3015cebf 0x3015cca3 0x350b6663 0x32aa914d 0xe85c1 0x3afb0ab7)
libc++abi.dylib: terminating with uncaught exception of type NSException
(lldb) 
EN

回答 1

Stack Overflow用户

回答已采纳

发布于 2014-09-12 22:49:13

inputView属性定义为(UIView*),而不是(UIViewController*)。在将视图属性分配给inputView时,需要使用加载的视图控制器的视图属性,而不是视图控制器本身。我认为还应该将加载的视图控制器存储为属性,当单元格被重新加载时,每次从nib加载它对应用程序性能不利。虽然我上一次在表视图中尝试loadNibNamed是在iOS 4.0中,但它当时似乎没有使用任何缓存。不如试试这样的方法:

代码语言:javascript
复制
// class extension for the lazy loaded property
@interface MyTableViewController()
@property (readonly) UIViewController *inputVC;
@end


@implementation MyTableViewController {
    UIViewController *_inputVC;
}

- (UIViewController *)inputVC {
    if (_inputVC == nil) {
        _inputVC = [[[NSBundle mainBundle] loadNibNamed:@"TaskManagerPickerKeyboardViewController" owner:nil options:nil] objectAtIndex:0];
    }
    return inputVC;
}

...

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
    ...
    cell.taskAnswerTextField.inputView = self.inputVC.view;
    ...
}

@end
票数 0
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/25774472

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档