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.
我在详细视图中有一个 Web 视图。当从主视图 (UITableView) 中选择的对象在 Web 视图中加载其内容时。当我在主视图中返回时,Web 视图中的内容仍然存在。我想清除网页视图的内容。我怎样才能做到这一点?
提前致谢
您可以添加一个在您移回主视图时调用的委托,并在此调用中:
[webView stringByEvaluatingJavaScriptFromString :@"document.open();document.close()"];