38

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

4

2 回答 2

20

在 iOS 7 之前的早期 iOS 版本中,所有 UITextFields 和 UITextViews 都有底层 UIWebView 来显示格式化文本。从 iOS 7 开始,格式化文本是使用 TextKit 框架绘制的,因此 -webView 属性已被弃用。

似乎 Apple 框架仍在webView内部调用该方法。

于 2013-10-22T16:23:05.953 回答
1

重置模拟器为我解决了这个问题。

  • XCode 版本 5.1.1
  • iOS 模拟器 7.1
于 2014-05-01T10:20:01.500 回答