Kerning in iOS UITextView

前端 未结 6 938
北海茫月
北海茫月 2020-12-22 18:33

For what apparently is a \'bug,\' UITextView does not seem to support kerning like other UIKit Elements. Is there a workaround to get kerning working?

To be clear, I

6条回答
  •  一整个雨季
    2020-12-22 19:07

    Try this:

    [textView_ setValue:@"hello, world" forKey:@"contentToHTMLString"];
    

    It works in my test. I haven't tried it in the app store of course.

提交回复
热议问题