我正在研究信息检索,其中最新信息位于 UITableView 之上。代码是这样的。
-(UITableViewCell*)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
LoanModel* loan = _feed.products[indexPath.row];
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"Cell" ];
if (cell == nil) {
cell = [[UITableViewCell alloc]initWithStyle:UITableViewCellStyleValue2 reuseIdentifier:@"Cell"];
}
NSString *myString = [NSString stringWithFormat:@"%@",[loan name]];
NSArray *myWords = [myString componentsSeparatedByString:@","];
NSMutableArray *reversed = [NSMutableArray arrayWithCapacity:[myWords count]];
NSEnumerator *enumerator = [myWords reverseObjectEnumerator];
for (id element in enumerator) {
[reversed addObject:element];
}
NSMutableString *reverseString = [reversed componentsJoinedByString:@","];
cell.textLabel.text = reverseString;
return cell;
}
我得到的JSON
对象分别包含两个字段 cid 和 name。我只显示名称是 tableview。但我想反向显示它,即最后一次更新应该首先显示。但是上面的代码反向显示了内容。如果内容是“hello”,则显示“olleh”。请建议我如何获得UITableView
反向列表。我是iOS的新手。