我需要根据被观察的属性设置uitableviewCell backgroundColor。如何动态设置特定行?

时间:2012-04-27 04:45:35

标签: objective-c ios5 uitableview

我需要根据被观察的属性设置uitableviewCell backgroundColor。除非有更好的方法可以实现,否则我如何在被观察的方法中动态地将行设置为灰色或白色。

我正在观察物体是否有效,此时我将细胞激活(白色)或不激活(灰色)。

谢谢你们

1 个答案:

答案 0 :(得分:1)

您可以使用

获取特定行的单元格
  UITableViewCell *cell = [YourTableVIew cellForRowAtIndexPath:[NSIndexPath indexPathForRow:YourROW inSection:YourSection];