繁体   English   中英

iPhone开发:使用TableView单元格作为按钮

[英]iphone development: using tableview cells as a button

可以像按钮一样使用tableView单元格吗? 在我的应用程序中,我希望有一个包含4行的表格视图,并且每行中都会有标签。 我想要的是,当我触摸一行时,表格tableview单元格应该像按钮一样做出反应(执行操作并突出显示背景)? 那可能吗? 我怎样才能做到这一点? 谢谢。

非常简单的委托方法将被称为didSelectRowAtIndexPath,您可以在其中获取在哪一部分中点击的行,并可以执行进一步的操作。

例如

-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
    // deselect
    [tableView deselectRowAtIndexPath:indexPath animated:YES];

    if(indexPath.row == 0){
        LoginFormViewController *vController = nil;
        if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad)
        {
            vController = [[LoginFormViewController alloc] initWithNibName:@"LoginFormViewController_ipad" bundle:nil];
        }else {
            vController = [[LoginFormViewController alloc] initWithNibName:@"LoginFormViewController" bundle:nil];
        }
        [self.navigationController pushViewController:vController animated:YES];
        [vController release];
    }
}

您可以在UITableView委托的tableView:didSelectRowAtIndexpath方法中实现此“按钮”功能;)

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath 
{
    // do something when pressed on an UITableViewCell
}

cel将突出显示,并且您的表视图的委托将tableView:didSelectRowAtIndexPath:收到tableView:didSelectRowAtIndexPath:消息。 您不需要任何额外的操作即可实现您所描述的内容。

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {

    static NSString *CellIdentifier = @"Cell";

    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
   if (cell == nil) {
        cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease];
       cell.selectionStyle=UITableViewCellSelectionStyleGray;

    }



    if(tableView.tag==1)
    {
    cell.userInteractionEnabled = NO;
    cell.backgroundColor =[UIColor blackColor];

    UIButton *Btn11=[UIButton buttonWithType:UIButtonTypeCustom];
    [Btn11 addTarget:self action:@selector(ratingAction:) forControlEvents:UIControlEventTouchUpInside];
    [Btn11 setBackgroundImage:[UIImage imageNamed:@"small_img4.png"] forState:UIControlStateNormal];
    Btn11.tag=indexPath.row;
    Btn11.frame=CGRectMake(0, 6.5, 156, 74.5);


        UILabel *Main_tblImg_Label=[[UILabel alloc]initWithFrame:CGRectMake(0, 80,156, 31)];
        [Main_tblImg_Label setBackgroundColor:[UIColor blackColor]];
        //[Main_tblImg_Label setText:@"First Drive 2012 Mercedes Benz M class"];
        //Main_tblImg_Label.textAlignment = UITextAlignmentCenter;
        [Main_tblImg_Label setTextColor:[UIColor whiteColor]];
        [Main_tblImg_Label setFont:[UIFont fontWithName:@"Helvetica" size:9]];
        [Main_tblImg_Label setNumberOfLines:2];

        [cell.contentView addSubview:Main_tblImg_Label];
        [cell.contentView addSubview:Btn11];



        UILabel *other_Lbl=[[UILabel alloc]initWithFrame:CGRectMake(14, 80, 142, 29)];
        [other_Lbl setText:@"First Drive 2012 \nMercedes Benz M class"];
        [other_Lbl setBackgroundColor:[UIColor blackColor]];
        [other_Lbl setTextColor:[UIColor whiteColor]];
        [other_Lbl setFont:[UIFont fontWithName:@"Helvetica" size:9]];
        [other_Lbl setNumberOfLines:2];
        [cell.contentView addSubview:other_Lbl];
        [cell.contentView addSubview:Btn11];
                //[cell.contentView addSubview:Main_tblImg_Label];
//      [cell.contentView addSubview:Btn11];
//      







    UIButton *Btn22=[UIButton buttonWithType:UIButtonTypeCustom];
    [Btn22 addTarget:self action:@selector(ratingAction2:) forControlEvents:UIControlEventTouchUpInside];
    [Btn22 setBackgroundImage:[UIImage imageNamed:@"Screen2.png"] forState:UIControlStateNormal];
    Btn22.tag=indexPath.row;
    Btn22.backgroundColor=[UIColor clearColor];
    Btn22.frame=CGRectMake(165, 6.5, 156, 74.5);

        UILabel *main_tblImg_Lbl2=[[UILabel alloc]initWithFrame:CGRectMake(165, 80, 156, 31)];

        [main_tblImg_Lbl2 setBackgroundColor:[UIColor blackColor]];
        //[main_tblImg_Lbl2 setText:@"Audi planning Mexican Assembly plant?"];
        [main_tblImg_Lbl2 setTextColor:[UIColor whiteColor]];
        //[main_tblImg_Lbl2 setFont:[UIFont fontWithName:@"times" size:1]];
        [main_tblImg_Lbl2 setFont:[UIFont fontWithName:@"Helvetica" size:10]];
        [main_tblImg_Lbl2 setNumberOfLines:2];
        [cell.contentView addSubview:main_tblImg_Lbl2];


        UILabel *other1_Lbl=[[UILabel alloc]initWithFrame:CGRectMake(176, 80, 136, 31)];
        [other1_Lbl setText:@"Audi planning Mexican Assembly plant?"];
        [other1_Lbl setBackgroundColor:[UIColor blackColor]];
        [other1_Lbl setTextColor:[UIColor whiteColor]];
        [other1_Lbl setFont:[UIFont fontWithName:@"Helvetica" size:10]];
        [other1_Lbl setNumberOfLines:2];
        [cell.contentView addSubview:other1_Lbl];
        [cell.contentView addSubview:Btn11];


    [cell.contentView addSubview:Btn22];
    }
return cell
}

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM