这是Nsr(只是xcoding的初学者),使用xcode 4.3.3,
我通过故事板制作了自定义UITableview的自定义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天:( 提前谢谢,干杯。
答案 0 :(得分:0)
函数返回自定义单元格,但在标题中,您编写了UItableviewCell,将其更改为自定义