1

这是 Nsr(只是 xcoding 的初学者),使用 xcode 4.3.3,

我通过故事板制作了一个带有自定义 UITableviewcell 的自定义 UITableview,我的自定义单元格中有一个 UIBUtton 和一个 UILabel。我删除了单元格选择(也清除了背景),以便只能访问作为自定义 UILabel 的背景的按钮。

由于使用数据数组,现在有一堆按钮,当我单击任何按钮时,它会转到另一个视图(详细视图),我想要的只是从先前选择的设置自定义标签(设置在详细视图上)带有“标签”的按钮...表示新标签 = 上一页从自定义表格视图中单击的标签..

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    static NSString *CellIdentifier = @"Cell";
    Custom *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];

    if (cell == nil) {

        cell = [[Custom alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];

    }

    cell.myLabel.text = [myArray objectAtIndex:indexPath.row];

    return cell;
}


- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{

    [tableView deselectRowAtIndexPath:indexPath animated:YES];

    [self.myTable reloadData];

}

我希望你能解决我的问题,非常抱歉我的英语很差。请帮助我,我真的一团糟,因为这个问题已经花了我 3 天的时间 :( 提前谢谢,干杯。

4

1 回答 1

0

函数返回自定义单元格,但在标题中您编写 UItableviewCell 将其更改为自定义

于 2012-09-27T22:15:06.140 回答