1
的部分我有我的UITableView具體的UITableViewCell在UITableView的
if (indexPath.row == 6){
UIImageView *blog = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"blog.png"]];
[cell setBackgroundView:blog];
UIImageView *selectedblog = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"blogSel.png"]];
cell.selectedBackgroundView=selectedblog;
cell.backgroundColor = [UIColor clearColor];
[[cell textLabel] setTextColor:[UIColor whiteColor]];
return cell;}
各指標的代碼,我有兩個部分,在每節5行。如何將第1節中的indexPath.row 1到5以及第2節中的indexPath.row 6到10?