Получите UITablieViewCell indexPath - PullRequest
1 голос
/ 24 июля 2011

Как я могу получить indexpath ячейки после того, как я создал ячейку? Мне нужно установить uniq cell.tag. Любая другая идея, как я могу это сделать?

- (UITableViewCell *)tableView:(UITableView *)tableView cellForManagedObject:(NSManagedObject *)managedObject
{
    ConditionCell *cell = (ConditionCell *)[tableView dequeueReusableCellWithIdentifier:[ConditionCell reuseIdentifier]];

    if ( nil == cell )
    {
        NSArray *nib = [[NSBundle mainBundle] loadNibNamed:@"ConditionCell" owner:self options:nil];
        cell = [nib objectAtIndex:0];
        cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
    } else
    {
        // Reset Image
        cell.img.image = nil;
    }

Причина в том, что мне нужно найти ячейку в другом месте

[condition processImageDataWithBlock:^(NSData *imageData) {
            if (self.view.window) {
                if (cell.tag == [self.tableView indexPathForCell:cell].row)
                {
                    NSLog(@"%@",cell.tag);
                    UIImage *image = [UIImage imageWithData:imageData];
                    [condition writeToFile:imageData];
                    if (image)
                    {
                        cell.img.image = image;
                        [cell.activityIndicator stopAnimating];
                        [self.tableView reloadRowsAtIndexPaths:[NSArray arrayWithObject:[self.tableView indexPathForCell:cell]] withRowAnimation:UITableViewRowAnimationNone];
                    }
                    [condition release];
                }
            }
        }];

1 Ответ

1 голос
/ 24 июля 2011

Возможно, проблема в том, что вы вызываете его не в главном потоке, потому что это UIView - попробуйте это:

- (void)someMethodToStartAsync
{
    UITableViewCell *cell = however your getting your cell;
    NSAssert(cell, @"cell was nil");
    NSIndexPath *indexPath = [self.tableView indexPathForCell:cell];

    [condition processImageDataWithBlock:^(NSData *imageData) {
        // do something with indexPath
    }
}

indexPath будет копией при использовании в блоке, поэтому, если вы хотите, чтобы инициализированное вами значение отражалось за пределами блока, объявите его следующим образом:

_block NSIndexPath *indexPath = whatever;
...