Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
83 views
in Technique[技术] by (71.8m points)

ios - UITextField -webView no longer supported

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 architecture

Can someone explain why this is appearing?

I am currently running XCode 5 with iOS 7

question from:https://stackoverflow.com/questions/19073960/uitextfield-webview-no-longer-supported

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

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.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...