0

UITableView でセクションを操作する方法を学ぶための非常に単純なアプリがありますが、例外があります-

2013-09-17 08:46:19.956 セクション [4497:c07] * -[__NSArrayI objectAtIndex:]: 割り当て解除されたインスタンス 0x9566d40 に送信されたメッセージ

メソッド全体を以下に示します - ヘルプが必要です。

- (void)viewDidLoad
{
    [super viewDidLoad];
    NSString *path = [[NSBundle mainBundle] pathForResource:@"sortednames" ofType:@"plist"];
    NSDictionary *dict = [[NSDictionary alloc] initWithContentsOfFile:path];
    self.names = dict;
    NSArray *array = [[_names allKeys] sortedArrayUsingSelector:@selector(compare:)];
    _keys = array;
}

- (NSInteger) numberOfSectionsInTableView:(UITableView *)tableView
{
    NSLog(@"%lu", (unsigned long)[_keys count]);
    return [_keys count];
}

- (NSInteger) tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
    NSString *key = [_keys objectAtIndex:section];
    NSArray *nameSection = [_names objectForKey:key];
    return [nameSection count];
}

- (UITableViewCell *) tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    NSUInteger section = [indexPath section];
    NSUInteger row = [indexPath row];

    NSString *key = [_keys objectAtIndex:section];
    NSArray *nameSection = [_names objectForKey:key];

    static NSString *SectionsTableIdentifier = @"SectionsTableIdentifier";
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:SectionsTableIdentifier];

    if (cell == nil)
    {
        cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:SectionsTableIdentifier];
    }

    cell.textLabel.text = [nameSection objectAtIndex:row];
    return cell;
}

- (NSString *) tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section
{
    NSString *key = [_keys objectAtIndex:section];
    return key;
}
4

2 に答える 2

1

_keysそのような配列を保持する必要があります:

_keys = [[[_names allKeys] sortedArrayUsingSelector:@selector(compare:)] retain];
于 2013-09-17T04:59:43.987 に答える