UITextField -webView no longer supported

前端 未结 2 1903
小蘑菇
小蘑菇 2020-12-01 13:56

I get the below debug output when working with some text fields.

UITextField -webView called. This method is no longer supported with the new text arc

相关标签:
2条回答
  • 2020-12-01 14:10

    Resetting the simulator solved the issue for me.

    • XCode Version 5.1.1
    • iOS simulator(s) 7.1
    0 讨论(0)
  • 2020-12-01 14:20

    In previous iOS versions before iOS 7 all UITextFields and UITextViews had underlying UIWebView to show formatted text. Starting from iOS 7 formatted text is drawn using TextKit framework, so -webView property become deprecated.

    It seems Apple frameworks still call the webView method internally.

    0 讨论(0)
提交回复
热议问题