2

在我的cellForRowAtIndexPath方法中,它从服务器获取数据。如果数据的值之一是false我想更改一些全局对象的一些值并跳过实现此单元格,但是当我尝试返回nil应用程序时崩溃。我将Parse.comPFQueryTableViewController用于. 我无法查询对 said-value 为 true 的对象,因为当它是 时,我需要更改程序中的其他内容。UITableViewControllercellForRowAtIndexPathfalse

Assertion failure in -[UITableView _configureCellForDisplay:forIndexPath:]
*** Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'UITableView (<UITableView: 0x7e30e400; frame = (0 95; 320 424); clipsToBounds = YES; autoresize = W+H; gestureRecognizers = <NSArray: 0x7b2a94b0>; layer = <CALayer: 0x7b2a8af0>; contentOffset: {0, 0}; contentSize: {320, 1690}>) failed to obtain a cell from its dataSource (<_UIFilteredDataSource: 0x7b26d5a0>)'
4

1 回答 1

0

您不能为 cellForRowAtIndexPath 返回 nil,这会使您的应用程序崩溃。您可以只返回一个没有任何元素的单元格,例如: return [UITableViewCell new];

好吧,在我看来,您最好重新排列您的数据源数组,只需将“真”取出到一个新数组中即可。使用新阵列将解决您的情况。

于 2016-01-23T02:02:58.247 回答