當用戶在設置中選擇首選文本大小時,我正在更改按鈕中的文本大小。我做這樣的:「動態類型」更改按鈕的字體大小
UIFont *font = [UIFont preferredFontForTextStyle:UIFontTextStyleBody];
self.button.font = font;
它的工作,但我得到一個錯誤:
font is deprecated:first deprecated in IOS 3.0
我不知道是否還有另一種,實現更正確的方式。
當用戶在設置中選擇首選文本大小時,我正在更改按鈕中的文本大小。我做這樣的:「動態類型」更改按鈕的字體大小
UIFont *font = [UIFont preferredFontForTextStyle:UIFontTextStyleBody];
self.button.font = font;
它的工作,但我得到一個錯誤:
font is deprecated:first deprecated in IOS 3.0
我不知道是否還有另一種,實現更正確的方式。