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

ios-iOS NSMutableArray問題

編輯:編程綜合問答
iOS NSMutableArray問題

需要填充一個數組的UITableview,其中包含文件。

//in my header
@property (strong, nonatomic) NSMutableArray *files;
//in my tableView:cellForRow:atIndexPath:
static NSString *cellid = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:cellid];
if (cell == nil) {
    cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:cellid];
    cell.textLabel.text = [_files objectAtIndex:indexPath.row];
}
return cell;

其中_files設置為等同[[NSFileManager defaultManager] contentsOfDirectoryAtPath:[self downloadsDir];

代碼運行之後可以正確顯示文件,問題是在目錄中添加其他文件時,使用tableView reloadData,添加新文件但是標題會復制原來的。

比如:

添加文件之前的tableView

++++++++++++++++++++++++++
text.txt
++++++++++++++++++++++++++
testing.txt
++++++++++++++++++++++++++

添加了文件othertest.txt之後:

```text.txt```
```++++++++++++++++++++++++++```
```testing.txt```
```++++++++++++++++++++++++++```
```testing.txt```
```++++++++++++++++++++++++++```

正確的格式應該是這樣:

```++++++++++++++++++++++++++```
```text.txt```
```++++++++++++++++++++++++++```
```testing.txt```
```++++++++++++++++++++++++++```
```othertest.txt```
```++++++++++++++++++++++++++```

重啟應用就可以正常顯示,不知道為什麼?

最佳回答:


if (cell == nil) {
    cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:cellid];
    cell.textLabel.text = [_files objectAtIndex:indexPath.row];
}
return cell;

因為你只有分配新單元時才設置單元標簽text,試試這樣:

if (cell == nil) {
    cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:cellid];
}
cell.textLabel.text = [_files objectAtIndex:indexPath.row];
return cell;

同樣的代碼,不過我刪除了設置單元文本那行,這樣在你創建新的或者重新使用cell都能執行。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved