セルを作成した後、どのようにしてセルのインデックスパスを取得できますか?私はuniq cell.tagを設定する必要があります。どのように私はそれを行うことができます他のアイデア?UITablieViewCellのindexPathを取得する
- (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;
}
理由は、私はそれはUIViewのがあるので、おそらく問題は、あなたがメインスレッドではない、それを呼び出している別のthred
[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];
}
}
}];
これはあなた自身の質問に答えません - [self.tableView indexPathForCell:cell]? –
私はgladyが答えとして上記のコメントを受け入れるだろう。 @トムフォビア。 –
そうです。しかし、それは動作しません。常にnilを返します。 – Chris