J'ai un UIButton
, qui, lorsqu'il est pressé, fait apparaître une nouvelle vue où l'utilisateur peut modifier certains paramètres. Lorsque la vue est rejetée, j'aimerais mettre à jour le titre / texte du UIButton
pour refléter le nouvel état. J'appelle:
[myButton setTitle: @"myTitle" forState: UIControlStateNormal];
[myButton setTitle: @"myTitle" forState: UIControlStateApplication];
[myButton setTitle: @"myTitle" forState: UIControlStateHighlighted];
[myButton setTitle: @"myTitle" forState: UIControlStateReserved];
[myButton setTitle: @"myTitle" forState: UIControlStateSelected];
[myButton setTitle: @"myTitle" forState: UIControlStateDisabled];
Mais cela ne semble jamais changer par rapport au texte / titre original tel que spécifié dans IB.