0

我是 iOS 编程新手。我必须在我的 NSDictionary 中对我的键进行排序,或者更像是颠倒我的键的顺序。

我现在的钥匙是这样的;

哦!而且我的键没有值,因为它们是从我的 XML 中取出的。

NSDictionary(称为 GradDict);

2012 S1
2012 S2

我希望它是这样的;

2012 S2
2012 S1

这是我对其进行排序的代码;

在 parserDidEndDocument 中:

NSEnumerator *enumerator = [gradDict keyEnumerator];
id key;

while ((key = [enumerator nextObject])) {
    NSLog(@"Key:%@",key);
    NSLog(@"%@", [gradDict objectForKey:key]);

}
self.sort = [key sortedArrayUsingSelector:@selector(localizedCaseInsensitiveCompare:)];

在 cellForRowAtIndexPath 中:

ModuleCell *cell = [tableView dequeueReusableCellWithIdentifier:@"ModuleCell"];

if (!cell)
{
    cell = [[[NSBundle mainBundle] loadNibNamed:@"ModuleCell" owner:nil options:nil] objectAtIndex:0];
}

NSString *period = [self.sort objectAtIndex:indexPath.section];
NSMutableArray *periodArray = [gradDict objectForKey:period];
Module *m = [periodArray objectAtIndex:indexPath.row];

[cell.moduleNameLabel setText:[m moduleName]];
[cell.moduleCreditLabel setText:[[NSString alloc] initWithFormat:@"%d", [m moduleCredits]]];
[cell.moduleGradeLabel setText:[m moduleGrade]];
cell.contentView.backgroundColor = [UIColor colorWithRed:0.75 green:0.93 blue:1 alpha:1];
[self.tableView setSeparatorColor:[UIColor colorWithRed:0.55 green:0.55 blue:0.55 alpha:1]];

return cell;

我做错了排序吗?我该如何做 cellForRowAtIndexPath?

4

1 回答 1

0

如果我理解正确,您需要对字典中的数据进行排序,对吗?但是字典排序没有保存。您可以对键进行排序,然后创建一个数组。

于 2013-05-16T08:23:00.773 回答