如何按可可中的tableview列进行排序

时间:2014-11-14 08:15:58

标签: cocoa tableview

我的应用程序中有一个tableview。它有2列,一列是“key”,一列是“value”,tableview的代码如下:

- (NSInteger)numberOfRowsInTableView:(NSTableView *)tableView
{
    //DataEntity *dataEntity = [[DataEntity alloc]init];
    return [dataEntity.items count];
}

- (id)tableView:(NSTableView *)tableView objectValueForTableColumn:(NSTableColumn *)tableColumn row:(NSInteger)row
{
    //DataEntity *dataEntity = [[DataEntity alloc]init];
    if([[tableColumn identifier]isEqualToString:@"key"])
    {
        return [[dataEntity.items allKeys] objectAtIndex:row];
    }
    if([[tableColumn identifier] isEqualToString:@"value"])
    {
        return [[dataEntity.items allValues] objectAtIndex:row];
    }
    return nil;
}

dataEntity是数据源的一个实例,而items是一个可变的dictianary。现在,我想在单击该列的标题后按一列排序。怎么实现呢? 我尝试按以下方式进行,但它不起作用。

-(void)tableView:(NSTableView *)tableView mouseDownInHeaderOfTableColumn:(NSTableColumn *)tableColumn
{
    NSImage *indicatorImage;
    if(sortAscending)
    {
    indicatorImage = [NSImage imageNamed:@"NSAscendingSortIndicator"];
    NSMutableDictionary *tempDict = [[NSMutableDictionary alloc]init];
    [tempDict setDictionary:dataEntity.items];
        NSLog(@"before sort %@",tempDict);
    NSArray *keys =  [tempDict allKeys];
    NSArray *sortedArray = [keys sortedArrayUsingComparator:^NSComparisonResult(id obj1,id obj2){
        return ([obj1 compare:obj2 options:NSNumericSearch]);
    }];

    [dataEntity.items setDictionary:tempDict];

    }
    else
    {
    indicatorImage = [NSImage imageNamed:@"NSDescendingSortIndicator"];
    }
    sortAscending=!sortAscending;
    [tableView setIndicatorImage:indicatorImage inTableColumn:tableColumn];
    [tableView reloadData];
}

1 个答案:

答案 0 :(得分:0)

实现这一目标的最简单方法是通过IB,只需选择表格列和属性检查器,然后设置"排序键"到代表字典中值的属性。

enter image description here