gpt4 book ai didi

crash - 选择器 View 上的断言失败

转载 作者:行者123 更新时间:2023-12-03 10:56:02 26 4
gpt4 key购买 nike

我在滚动带有零数据(零行)的选择器 View 时出现断言失败。在滚动选择器 View 时,我遇到了这个崩溃。在 iOS 6 上测试

* Assertion failure in -[UITableViewRowData rectForRow:inSection:], /SourceCache/UIKit_Sim/UIKit-2372/UITableViewRowData.m:1630

* Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'request for rect at invalid index path ( 2 indexes [0, 0])'



任何帮助都是可观的。

最佳答案

我有同样的问题

我不知道为什么会这样,

但它可以在 ios6 中修复(它如何在 ios5 中工作我没有检查):

- (NSInteger)pickerView:(UIPickerView *)pickerView numberOfRowsInComponent:(NSInteger)component
{
if ([self getCount] == 0)
return 1;
return [self getCount];
}

- (UIView *)pickerView:(UIPickerView *)pickerView viewForRow:(NSInteger)row forComponent: (NSInteger)component reusingView:(UIView *)view {
if ([self getCount] == 0)
return nil;
}

关于crash - 选择器 View 上的断言失败,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12672318/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com