Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个简单的问题,事实证明很难找到答案。我正在使用 WebView 加载带有文本区域的网页。在这些文本区域中键入时,拼写错误不会出现传统的红色下划线,但是,当您右键单击作品时,拼写正确的猜测会显示在上下文菜单中。
在您的 WebView 上使用 setContinuousSpellCheckingEnabled。在加载 URL 后的某个时间调用它,如下所示:
... NSString *url = @"http://www.google.com"; [[myview mainFrame] loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:url]]]; [myview setContinuousSpellCheckingEnabled:YES]; ...