• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

iphone - UIWebViews 的内存问题

[复制链接]
菜鸟教程小白 发表于 2022-12-12 19:22:26 | 显示全部楼层 |阅读模式 打印 上一主题 下一主题

我有一个 webviewcontroller,我创建了一个实例,然后我更改了请求,并根据在 tableview 中选择了哪一行来显示 webview。

// Replace tableView:didSelectRowAtIndexPath with the following
- (void)tableViewUITableView *)tableView didSelectRowAtIndexPathNSIndexPath*)indexPath
{

CGRect rect = self.view.frame;
CGFloat width = [UIScreen mainScreen].bounds.size.width;
CGFloat height = [UIScreen mainScreen].bounds.size.height;
rect.size.width = width; //self.view.frame.size.width;
rect.size.height = height; //self.view.frame.size.height;
RSSEntry *entry = [_allEntries objectAtIndex:indexPath.row];

page = [[WebViewController alloc] initWithUrl:entry.articleUrl];
page.view.frame = rect;
[self.view addSubview:page.view];

}

我的问题是,在加载其中一些后,我收到内存警告并崩溃。

在另一个选项卡中,我还有一个 web View ,它会在选项卡加载时加载谷歌地图。这几乎会在应用程序加载后立即崩溃。

由于我只为每个实例制作一个实例,我不明白为什么会出现这个问题。之前我每次都新建一个webviewcontroller,然后发布,但是遇到了同样的问题。

这是加载谷歌地图的代码:

@interface MapViewController : UIViewController {
    IBOutlet UIWebView *mapPage;
}

// Implement viewDidLoad to do additional setup after loading the view, typically from a nib.
- (void)viewDidLoad {
url_string = @"http://maps.google.fr/maps/ms?msa=0&msid=213119412551786463007.0004b3fb7f4c123377402&z=12";
url = [NSURL URLWithString:url_string];
request = [NSMutableURLRequest requestWithURL:[NSURL URLWithString:url_string]];
[request setCachePolicy:NSURLRequestReloadIgnoringLocalCacheData];
mapPage.scalesPageToFit = YES;
mapPage.autoresizingMask = (UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight);
[mapPage loadRequest:request];
[super viewDidLoad];
}

UIWebView 是在界面生成器中创建的。

map 加载完成后,或者当您尝试与 map 进行交互时,它会立即耗尽内存并崩溃。这似乎与上面的问题完全相同,但是这次没有选项卡,或者没有更改 UIWebView 使用的请求。



Best Answer-推荐答案


每次在 UITableView 中选择行时,都会创建 WebViewController 的新对象并将其 View (出于某种原因?)添加到当前 Controller 的 View 中。我不确定您是否至少从 super View 中删除了该 View (您还必须释放 WebViewController)。当然,它会占用越来越多的内存。

创建整个 UIViewController 并将其用作 subview 的原因是什么?为什么不使用 UINavigationController?

关于iphone - UIWebViews 的内存问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9290021/

回复

使用道具 举报

懒得打字嘛,点击右侧快捷回复 【右侧内容,后台自定义】
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

关注0

粉丝2

帖子830918

发布主题
阅读排行 更多
广告位

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap