를 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에 지정된대로 원본 텍스트 / 제목에서 변경되지 않는 것 같습니다.