我已经定义了一个UITableViewCell
我在我的 static 中使用的自定义UITableView
。我想访问我定义的变量(myTableViewImageCell
等),但这样做tableView:willDisplayCell
似乎是在说“重新定义单元格类型”。
这就是我正在做的事情:
- (void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath{
[cell setSelectionStyle:UITableViewCellSelectionStyleNone];
[cell.myTableViewLabel setShadowColor:[UIColor whiteColor]];
[cell.myTableViewLabel setShadowOffset:CGSizeMake(0.0f, 1.0f)];
}