dlaczego ustawienie koloru w kolorze UITableViewCell
w willDisplayCell
, ale nie w cellForRowAtIndexPath
?dlaczego ustawienie koloru UITableViewCell działa w "willDisplayCell", ale nie w "cellForRowAtIndexPath"?
Uwagi:
- używam tego kodu, aby ustawić kolor tła komórki:
[cell setBackgroundColor:[UIColor yellowColor]];
- prace kiedy kładę go w metodzie
- (void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath
- nie działa, jeśli I umieścić w w
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
Czy możesz opublikować swoje implementacje 'tableView: willDisplayCell: forRowAtIndexPath:' i 'tableView: cellForRowAtIndexPath:'? – titaniumdecoy