0

我有一个表格可以在 iOS 中使用 UISearchBar 显示 searchData。

当我使用关键字搜索时,我将数据检索到 NSMutableArray。NSMutableArray 中有很多数据。我只想在 tableView 中显示大约 20 个数据。通常我使用数据在表格视图中显示,

返回 [self.myArrayData 计数];

它显示了来自 NSMutableArray 的全部数据。我想限制数据计数以显示在 tableView 中。

我如何限制该数据计数?感谢您的帮助。

4

1 回答 1

2
NSInteger count = [self.myArrayData count];
if (count > 20) return 20;
return count;
于 2012-04-26T12:32:59.683 回答