我在Interface Builder中创建了一个ViewController和UIWebView。我用这样的数据填充webView:
NSString *urlAddress = self.artUrl;
//Create a URL object.
NSURL *url = [NSURL URLWithString:urlAddress];
//URL Requst Object
NSURLRequest *requestObj = [NSURLRequest requestWithURL:url];
//Load the request in the UIWebView.
[self.webView loadRequest:requestObj];
我应该如何在didReceiveMemoryWarning中发布此webView的内容?
谢谢
答案 0 :(得分:1)
您要么释放整个网络视图(例如,如果它在屏幕外),要么根本不显示。如果您确实需要发布内容,请加载空白页。