をUIButton
押したときに、ユーザーがいくつかの設定を変更できる新しいビューが表示されます。ビューが閉じられたらUIButton
、新しい状態を反映するようにタイトル/テキストを更新したいと思います。私は電話しています:
[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];
しかし、IBで指定されている元のテキスト/タイトルから変更されているようには見えません。