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.
我正在实现一个应用程序。我正在使用 loadWithhtmstring: 方法使用此 html 在 web 视图中加载 html,我在执行该方法后将数据发送到服务器,服务器返回 html。所以我的疑问是如何获得该响应html。
在 webViewdidFinishLoad 委托中,您可以添加
NSString *html = [webView stringByEvaluatingJavaScriptFromString: @"document.body.innerHTML"];
它将在 NSString 中返回您的 html 内容...