Clear tester status cell when no status is available

This commit is contained in:
Guillaume BIENKOWSKI 2014-12-15 17:02:50 +01:00
parent c09608312d
commit 4330aee7bc

View file

@ -119,7 +119,9 @@ static NSString* const kAllTestsName = @"Run All tests";
if(image){
image = [[NSBundle mainBundle] pathForResource:image ofType:@"png"];
cell.imageView.image = [UIImage imageWithContentsOfFile:image];
}
} else {
[cell.imageView setImage:nil];
}
return cell;
}