好的,现在我知道您想要重新设计分组表视图。
Download (mediafire.com 55kb)
代码如下:
#define numberOfRows 5
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
return 2;
}
- (NSInteger)tableView:(UITableView *)table numberOfRowsInSection:(NSInteger)section {
return numberOfRows;
}
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {
if (indexPath.row == 0)
return 42;
else
return 41;
}
- (UITableViewCell*)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
static NSString *kCustomCellID = @"CustomCell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:kCustomCellID];
if (cell == nil)
{
cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:kCustomCellID] autorelease];
UIImage *theIMG;
if (indexPath.row == 0) // you have to make a fourth image if only one cell exist
theIMG = [UIImage imageNamed:@"1.png"];
else if (indexPath.row == numberOfRows -1) // the last cell
theIMG = [UIImage imageNamed:@"3.png"];
else
theIMG = [UIImage imageNamed:@"2.png"];
UIImageView *mg = [[UIImageView alloc]initWithImage:theIMG];
cell.backgroundView = mg;
cell.selectionStyle = UITableViewCellSelectionStyleNone;
}
// check out how large your image should be if the table is not over the full screen
//NSLog(@"Row:%i Width:%f", indexPath.row, cell.backgroundView.frame.size.width);
cell.backgroundColor = [UIColor clearColor];
cell.textLabel.text = @"TEXT";
return cell;
}