詳解iPhone Tableview分批顯示數據
iPhone Tableview分批顯示數據是本文要介紹的內容,主要講解的是數據的顯示。iPhone屏幕尺寸是有限的,如果需要顯示的數據很多,可以先數據放到一個table中,先顯示10條,table底部有一察看更多選項,點擊察看更多查看解析的剩余數據?;旧暇褪?strong>數據源里先只放10條, 點擊***一個cell時, 添加更多的數據到數據源中. 比如:
數據源是個array:
- NSMutableArray *items;
ViewController的這個方法返回數據條數: +1是為了顯示"加載更多"的那個cell
- - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
- int count = [items count];
- return count + 1;
- }
這個方法定制cell的顯示, 尤其是"加載更多"的那個cell:
- - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
- if([indexPath row] == ([items count])) {
- //創(chuàng)建loadMoreCell
- return loadMoreCell;
- }
- //create your data cell
- return cell;
- }
還要處理"加載更多"的那個cell的選擇事件,觸發(fā)一個方法來加載更多數據到列表
- - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
- if (indexPath.row == [items count]) {
- [loadMoreCell setDisplayText:@"loading more ..."];
- [loadMoreCell setAnimating:YES];
- [self performSelectorInBackground:@selector(loadMore) withObject:nil];
- //[loadMoreCell setHighlighted:NO];
- [tableView deselectRowAtIndexPath:indexPath animated:YES];
- return;
- }
- //其他cell的事件
- }
加載數據的方法:
- -(void)loadMore
- {
- NSMutableArray *more;
- //加載你的數據
- [self performSelectorOnMainThread:@selector(appendTableWith:) withObject:more waitUntilDone:NO];
- }
添加數據到列表:
- -(void) appendTableWith:(NSMutableArray *)data
- {
- for (int i=0;i<[data count];i++) {
- [items addObject:[data objectAtIndex:i]];
- }
- NSMutableArray *insertIndexPaths = [NSMutableArray arrayWithCapacity:10];
- for (int ind = 0; ind < [data count]; ind++) {
- NSIndexPath *newPath = [NSIndexPath indexPathForRow:[items indexOfObject:[data objectAtIndex:ind]] inSection:0];
- [insertIndexPaths addObject:newPath];
- }
- [self.tableView insertRowsAtIndexPaths:insertIndexPaths withRowAnimation:UITableViewRowAnimationFade];
- }
小結:詳解iPhone Tableview分批顯示數據的內容介紹完了,希望通過本文的學習能對你有所幫助!