iphone中的小区选择方式

时间:2009-09-11 17:35:00

标签: iphone uitableview

默认情况下,iphone中有三种选择方式 - 表格视图。

灰色 - 蓝色 - 无。

我不需要灰色或蓝色。

我想设置我的自定义。

例如,在正常情况下,单元格应具有“aaaa.png”背景。

&安培;选定的单元格应该具有“bbbbb.png”背景。

我试图应用cell.backgroundView& cell.selectedBackground视图。但它没有用。

如果您对此有任何想法,请帮助我。

先谢谢你的帮助。

3 个答案:

答案 0 :(得分:8)

此处有三行代码,但您不需要图像!

UIView *selectedBackgroundViewForCell = [UIView new];
[selectedBackgroundViewForCell setBackgroundColor:[UIColor redColor]];
theCell.selectedBackgroundView = selectedBackgroundViewForCell;

答案 1 :(得分:6)

这是使用一行代码执行此操作的一种方法:

cell.selectedBackgroundView = [[[UIImageView alloc] initWithImage:[UIImage imageNamed:@"pink.png"]] autorelease];
  显然你需要制作图像。

答案 2 :(得分:3)

我试过以下&它奏效了。

-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {    
NSString *CellIdentifier = [NSString stringWithFormat:@"%i",indexPath.row];
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
    XML_FitnessPrograms *t=[arrayPrograms objectAtIndex:indexPath.row];
    cell=((indexPath.row%2)==0) ? 
    [self getCellContentView:CellIdentifier program_name:t.program_name alterNate:NO indexPath:indexPath] :
    [self getCellContentView:CellIdentifier program_name:t.program_name alterNate:YES indexPath:indexPath] ;
    CGRect a=CGRectMake(8, 0, 300, 44);
    UIImageView *aImg=[[UIImageView alloc] initWithFrame:a];
    UIImageView *bImg=[[UIImageView alloc] initWithFrame:a];
    aImg.image=[UIImage imageNamed:@"white-rect-tab.png"]; //arrow.png
    bImg.image=[UIImage imageNamed:@"white-rect-tab-copy.png"];
    [aImg setContentMode:UIViewContentModeScaleToFill];
    [bImg setContentMode:UIViewContentModeScaleToFill];
    cell.backgroundView=aImg;
    cell.selectedBackgroundView=bImg;
    [aImg release];
    [bImg release];
}
return cell;
}

-(UITableViewCell*)getCellContentView:(NSString*)cellIdentifier program_name:(NSString*)program_name alterNate:(BOOL)alterNate indexPath:(NSIndexPath*)indexPath
{

    UITableViewCell *cell; UILabel *tmp;
    CGRect label1Frame=CGRectMake(5, 0, 260, 44);
    cell=[[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:cellIdentifier] autorelease];
    cell.frame=CGRectMake(8, 0, 280, 44);
    cell.backgroundColor=[UIColor clearColor];
    tmp=[[UILabel alloc] initWithFrame:label1Frame]; 
    tmp.textColor=[UIColor colorWithRed:(9.0/255.0) green:(68.0/255) blue:(85.0/255) alpha:1.0];
    [tmp setFont:[UIFont fontWithName:@"Arial-BoldMT" size:15]];  
        tmp.text=program_name;                   
        [tmp setShadowColor:[UIColor lightGrayColor]];
    tmp.backgroundColor=[UIColor clearColor]; 
        [cell.contentView addSubview:tmp]; [tmp release];
    [cell setSelectionStyle:UITableViewCellSelectionStyleGray];
    return cell;
}