我正在使用以下方法调整 UIImages 的大小
- (UIImage *)resizeImageUIImage *)image toSizeCGSize)newSize forNameNSString *)name {
UIGraphicsBeginImageContext(newSize);
[image drawInRect:CGRectMake(0, 0, newSize.width, newSize.height)];
UIImage* newImage = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
[_dictSmallImages setObject:newImage forKey:name];
return newImage;
}
在 UITableView 的 cellForRowAtIndexPath 方法中,我是这样使用它的
- (UITableViewCell *)tableViewUITableView *)tableView cellForRowAtIndexPathNSIndexPath *)indexPath {
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier forIndexPath:indexPath];
[[cell.contentView viewWithTag:indexPath.row + 1] removeFromSuperview];
// Configure the cell...
NSString *imageName = [NSString stringWithFormat"img%d", indexPath.row + 1];
CGRect imageRect = CGRectMake(8, 5, 304, 190);
UIImage *scaledImage = [_dictSmallImages objectForKey:imageName];
if (![_dictSmallImages objectForKey:imageName]) {
scaledImage = [self resizeImage:[UIImage imageNamed:imageName] toSize:CGSizeMake(304, 190) forName:imageName];
}
UIImageView *imgView = [[UIImageView alloc] initWithFrame:imageRect];
[imgView setTag:indexPath.row + 1];
[imgView setContentMode:UIViewContentModeScaleAspectFit];
[imgView setImage:scaledImage];
[cell.contentView addSubview:imgView];
if ((lastIndexPath.row == 10 && indexPath.row == 0) || indexPath.row == lastIndexPath.row) {
if (_delegate) {
NSString *imgName = [NSString stringWithFormat"img%d", indexPath.row + 1];
[_delegate selectedText:imgName];
}
[imgView.layer setBorderColor:[UIColor yellowColor].CGColor];
[imgView.layer setBorderWidth:5.0f];
[imgView setAlpha:1.0f];
lastIndexPath = indexPath;
}
return cell;
}
但是当我通过 Profile 检查泄漏时,仪器会向我显示泄漏,例如
谁能告诉我为什么会出现这种泄漏??
您应该了解关于 -imageNamed:
的两个主要事实,尤其是当您决定使用它时:
-imageNamed:
返回一个自动发布的图像,该图像将在未来的某个时间自动发布。-imageNamed
还会缓存它返回的图像。缓存正在保留图像。如果您不释放它,缓存将继续保留图像,直到它释放它,例如发生内存警告时。因此,当您使用 imageNamed 获取图像时,它不会被释放,直到缓存被清除。
如果您不希望出于任何原因缓存图像,则应使用另一种创建方法,例如 -imageWithContentsOfFile:
不会缓存图像。 p>
您可以期望从 -imageWithContentsOfFile:
返回的图像对象会自动释放而不是缓存,并且会在运行循环结束时被释放。
关于ios - 在弧中调整 UIImage 大小时内存泄漏,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21326844/
欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) | Powered by Discuz! X3.4 |