J'ajoute une vue secondaire à UITableViewCell
i.e
UITableViewCell *cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault` reuseIdentifier:cellIdentifier];
Ici _cellBackgroundView
appartient à UIView
.
[cell.contentView addSubview:_cellbackground];
Je veux vérifier à l'aide de isDescendantOfView
s'il contient _cellbackground
mais je reçois un avertissement.
if (![_cellbackground isDescendantOfView:[cell subviews]]) {
[cell.contentView addSubview:_cellbackground];
}
else{
[_cellbackground removeFromSuperview];
}
références Vérifier si une sous-vue est dans une vue
Veuillez m'aider