需要填充一個數組的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都能執行。