程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> uitableview-分組UITableView統計cell索引

uitableview-分組UITableView統計cell索引

編輯:編程綜合問答
分組UITableView統計cell索引

創建一個索引計數給分組織UITableView的所有cell。我已經存儲到正確位置了,但是提取的時候提取不出來。

索引代碼:

indexPath.section = 0   
  indexPath.row = 0     cellIndex = 0
  indexPath.row = 1     cellIndex = 1
  indexPath.row = 2     cellIndex = 2
  indexPath.row = 3     cellIndex = 3
  indexPath.row = 4     cellIndex = 4

indexPath.section = 1
  indexPath.row = 0     cellIndex = 5
  indexPath.row = 1     cellIndex = 6
  indexPath.row = 2     cellIndex = 7
  indexPath.row = 3     cellIndex = 8

方程式:

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    NSInteger cellIndex = numberOfSections * indexPath.section + indexPath.row;
}

最佳回答:


在外面定義一個累加器不行?

NSInteger cellIndex=0;

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    ++cellIndex;
    NSLog(@"current cell index:%d",cellIndex);
}
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved