I created a custom cell. And I have a table view with a group style. Now I want to put a Backgroung image in each cell of another section. How to set a background image of a custom cell. Here is the code to create a custom cell.
UIView *view = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 305, 90)];
//view.backgroundColor = [UIColor darkGrayColor];
UIImageView *imageV = [[UIImageView alloc] initWithFrame:CGRectMake(11, 9, 61, 55)]; // NSLog(@"imageArray%@",[play.imageArray count]); NSString *img=[play.imageArray objectAtIndex:indexPath.row]; NSLog(@"img=%@",img); imageV.image = [UIImage imageNamed:img]; [view addSubview:imageV]; [imageV release]; UILabel *lblAchievementName = [[UILabel alloc] initWithFrame:CGRectMake(90, 10, 168, 21)]; lblAchievementName.text = [play.listData objectAtIndex:indexPath.row]; lblAchievementName.backgroundColor=[UIColor clearColor]; lblAchievementName.textColor=[UIColor orangeColor]; [lblAchievementName setFont:[UIFont fontWithName:@"Arial Black" size:16.5]]; [view addSubview:lblAchievementName]; [lblAchievementName release] [cell.contentView addSubview:view]; return cell;
Now, how to set the inverse image for this custom view?
source share