0

我在表格视图的每个单元格中创建了一个标签和图像。如果单击图像,我希望标签数据引用该单元格。

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    UILabel *phone=[[[UILabel alloc]initWithFrame:CGRectMake(10, 95, 320,15)]autorelease];

    phone.font=[UIFont boldSystemFontOfSize:12];
    [phone setTextAlignment:UITextAlignmentLeft];
    [phone  setText:[d valueForKey:@"Phone"]];
    [cell addSubview:phone];

    myImageView.image = [UIImage imageNamed:@"call.png"];
    cell.imageView.image=myImageView.image;
    cell.imageView.userInteractionEnabled=YES;

    UITapGestureRecognizer *tapped = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(imageSelectedInTable:)];

    [cell.imageView addGestureRecognizer:tapped];
    [tapped release];
}

-(IBAction)imageSelectedInTable:(UITapGestureRecognizer*)gesture
{
    NSLog(@"Selected an Image");

    UIImageView *imgView = (UIImageView *) [gesture view];
    UITableViewCell *cell = (UITableViewCell*)[[imgView superview]superview];
    NSIndexPath *tappedIndexPath = [self.tableView indexPathForCell:cell];
    NSLog(@"Image Tap %@", tappedIndexPath);
}

但是如何获取标签数据谢谢

4

1 回答 1

0

您的代码似乎有几处问题,例如您在 cellForRowAtIndexPath 中的“单元格”在哪里?话虽这么说,要解决您眼前的问题,您可以在 cellForRowAtIndexPath 内的手机标签中添加一个标签,例如,phone.tag = 5;然后在您的手势识别器方法中添加UILabel *phone = (UILabel *)[cell viewWithTag:5];. 现在您有了对该单元格中标签的引用。

于 2013-04-03T22:20:50.463 回答