0

我在表格视图中关联的单元格内有一个图像视图(点击我得到一个弹出框)。日志元素树捕获静态文本“图片”,但不显示与之关联的图像视图。

我的流程就像表格 - > 单元格(大约有 4 个单元格是静态文本)

这些单元格又附有文本字段。cell1-> textfields1 cell2-> textfields2 cell3-> textfields3 cell4-> 只有一个图像。

如何访问此图像?

  var imageId = table[0].cells()[4];

  imageId.images();

Dis不返回任何东西。

4

1 回答 1

0

我想你可以像这样配置你的单元格:

(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];

}

    CGRect Frame4 = CGRectMake(10.0, 30.0, 50.0, 40.0);
    UIButton *button = [UIButton buttonWithType:UIButtonTypeDetailDisclosure];
    button.frame = Frame4;
    [button setTitle:@"Click" forState:UIControlStateNormal];
    button.backgroundColor = [UIColor grayColor];
    [button addTarget:self
           action:@selector(buttonPressed:) forControlEvents:UIControlEventTouchUpInside];
    [cell.contentView addSubview:button];




return cell;

}

然后添加按钮动作事件:

  • (IBAction)buttonPressed:(UIButton *)sender{

    // 在 sender 中你可以知道哪个按钮被按下了 //do something }

请为您想要的图像按钮替换“ UIButtonTypeDetailDisclosure ”

于 2013-06-05T13:36:36.320 回答