我有n个文件。我将n个文件附加到表视图。实际上n个文件是一个文件夹。但是当我将这些文件附加到表视图时,它们被附加到表视图中单行由逗号分隔。如何在表格视图中将它们拆分为不同的行。请给我建议,请帮帮我。
答案 0 :(得分:1)
在fileNames
方法中找到viewDidLoad
数组中的文件名。
并实施如下方法:
-(NSInteger)tableView:(UITableView *)aTableView numberOfRowsInSection:(NSInteger)section
{
return [fileNames count];
}
-(UITableViewCell*)tableView:(UITableView *)aTableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"cell"];
if (!cell) {
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:@"cell"];
}
cell.textLabel.text = [fileNames objectAtIndex:indexPath.row];
return cell;
}
答案 1 :(得分:0)
将您的文件列表存储在一个数组中,每个数组元素只有一个文件名,并使用indexPath.row
选择正确的文件。
如果您需要拆分单个字符串,请使用componentsSeparatedByString:
。
答案 2 :(得分:0)