0

我正在使用下面的代码按 Distributor 对我的 tableview 进行排序(按产品字母顺序排列)

    NSSortDescriptor *aSort =[[NSSortDescriptor alloc] initWithKey:@"Dis" ascending:YES];
    [distribArray sortUsingDescriptors:[NSMutableArray arrayWithObject:aSort]];

    NSLog( @"data from table %@", distribArray);

    [self.tableView reloadData];


    NSLog(@"ok2222222222");
    [[NSUserDefaults standardUserDefaults] setValue:@"Dis" forKey:@"ListBy"];
    [[NSUserDefaults standardUserDefaults] synchronize];

我想知道将分销商名称显示为该分销商所有产品上方的标题标题的最简单方法是什么。我目前在每个产品的单元格的详细信息视图中显示分销商名称。

我想从。

Product 1
Acme
Product 2
Acme
Product 3
Acme

到下面这个并保留我的 UITableView\Cells

Acme
Product 1
Product 2
Product 3

.... 非常感谢您的帮助。

4

1 回答 1

0

也许这不是最快的方法,但我认为它很简单

首先创建一个像这样的小型内部类:

@interface ProductSection
@property (strong, nonatomic) NSString* sectionName;
@property (strong, nonatomic) NSMutableArray* products;
@end

然后用这个代替你的排序:

NSSortDescriptor *aSort =[[NSSortDescriptor alloc] initWithKey:@"Dis" ascending:YES];
NSArray* products = [distribArray sortUsingDescriptors:[NSMutableArray arrayWithObject:aSort]];

self.sections = [NSMutableArray array];

NSString* currentDistributor = nil;
for (Product* p in products) {
    if (![p.Dis isEqualToString:currentDistributor]) {
        ProductSection* section = [[ProductSection alloc] init];
        section.sectionName = p.Dis;
        section.products = [NSMutableArray array];
        [self.sections addObject:section];

        currentDistributor = p.Dis;
    }
    ProductSection* section = [self.sections lastObject];
    [section.products addObject:p];

}
[self.tableView reloadData];

哪里self.sections是一个可变数组ProductSection

接下来在你的Table View Data Source

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
return [[[self.sections objectAtIndex:section] products] count];

}

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
return [self.sections count];

}

- (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section {
[[self.sections objectAtIndex:section] sectionName];

}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
Product* p = [[[self.sections objectAtIndex:indexPath.section] products] objectAtIndex:indexPath.row];
...

}

希望这会有所帮助

于 2012-10-12T21:29:59.233 回答