Tengo un UIButton
, que cuando se presiona, abre una nueva vista donde el usuario puede cambiar algunas configuraciones. Cuando se descarta la vista, me gustaría actualizar el título / texto UIButton
para reflejar el nuevo estado. Estoy llamando:
[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];
Pero nunca parece cambiar del texto / título original como se especifica en IB.