-1

I am getting this console output all of a sudden. What does it mean?

UITextField -webView called. This method is no longer supported with the new text architecture
maelswarm
  • 1,163
  • 4
  • 18
  • 37
Zia
  • 14,622
  • 7
  • 40
  • 59

1 Answers1

1

UITextFields use to have an underlying UIWebView to show formatted text. With iOS 7, formatted text is drawn using TextKit framework.

In other words, it's depreciated.

UITextField -webView no longer supported

Community
  • 1
  • 1
maelswarm
  • 1,163
  • 4
  • 18
  • 37