我想以編程方式更改具有歸屬標題的UIButton
的標題。 該按鈕在IB中創建。我不想只改變標題/文本的屬性。以編程方式更改UIButton的屬性標題
我試過下面的代碼,但找不到方法來更改NSAttributedString
的標題。
NSAttributedString *attributedString = [self.deleteButton attributedTitleForState:UIControlStateNormal];
// How can I change title of attributedString without changing the attributes?
[self.deleteButton setAttributedTitle:attributedString forState:UIControlStateNormal];
謝謝!