You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Since iOS13 you cannot get system font name by string.
The console outputs a note: CoreText note: Client requested name ".SFUI-Regular", it will get TimesNewRomanPSMT rather than the intended font. All system UI font access should be through proper APIs such as CTFontCreateUIFontForLanguage() or +[UIFont systemFontOfSize:].
One use case is into maximumFontSizeThatFitsInRect method of M13ProgressViewBar.m
Since iOS13 you cannot get system font name by string.
The console outputs a note:
CoreText note: Client requested name ".SFUI-Regular", it will get TimesNewRomanPSMT rather than the intended font. All system UI font access should be through proper APIs such as CTFontCreateUIFontForLanguage() or +[UIFont systemFontOfSize:].
One use case is into
maximumFontSizeThatFitsInRect
method of M13ProgressViewBar.mI think it should be changed in
[UIFont systemFontOfSize: fontSize]
The text was updated successfully, but these errors were encountered: