Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
你知道是否可以使用 UI Builder 为静态单元格设置特定的渐变?从代码访问单元格也可以。不幸的是,我不能使用 tableview 委托方法来提取单元格,因为这会影响所有其他单元格。
多谢
克劳斯
我认为一种可能的解决方案可能是使用该方法:
- (void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath
它实际上提供了修改静态表格视图中的单元格而不影响其他单元格的可能性。其他解决方案非常受欢迎:)