Eu tenho um UIButton
, que quando pressionado, abre uma nova visualização onde o usuário pode alterar algumas configurações. Quando a exibição for descartada, gostaria de atualizar o título / texto do UIButton
para refletir o novo estado. Estou ligando:
[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];
Mas nunca parece mudar do texto / título original conforme especificado no IB.