Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

UIWebView log message iOS 7 [duplicate]

I am developing an app that use web browser after I built it I got this message:

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

So what do I need to use right now?

like image 427
Matrosov Oleksandr Avatar asked Jun 19 '26 16:06

Matrosov Oleksandr


1 Answers

Previously, UITextfield used a UIWebView internally for rendering rich text. This has been done away with the release of TextKit (or as they say it, "the new text architecture"). If you need to render web content, this should certainly be done by creating and using a UIWebView directly.

like image 74
Patrick Goley Avatar answered Jun 22 '26 04:06

Patrick Goley