|
@@ -283,7 +283,7 @@ static NSString * const HeaderReuseIdentifier = @"WatchHeaderID";
|
|
|
NSString* temp = indexPath.section == 0 ? @"watch_banner" : imageKey;
|
|
|
imageName = [NSString stringWithFormat:@"%@_%ld_%ld",temp, (long)indexPath.section, (long)cellTag];
|
|
|
}
|
|
|
- [cell.mIconImage setImage:[UIImage imageNamed:imageName]];
|
|
|
+ [cell.mIconImage setImage:imageName.length > 0 ? [UIImage imageNamed:imageName] : nil];
|
|
|
[cell.mIconLabel setText:NSLocalizedString(titleName, nil)];
|
|
|
[cell.mIconView setHidden:NO];
|
|
|
return cell;
|