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

iphone - 我的 didSelectRowAtIndexPath 函数导致内存泄漏

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

我在这里的第一篇文章。似乎我遇到了一些内存泄漏问题。

我有一个包含两列的标签栏,一列用于沙拉,另一列用于寿司。在每个选项卡中,我还有一个显示不同食物选择的表格 View 。当用户按下其中一个单元格时,应用会将用户带到一个更详细的 View ,该 View 显示更大的图像以及有关所选食物菜单的一些信息。

但是当我运行泄漏时,我在下一行得到 98.5% 的泄漏。 [self.navigationController pushViewController:详细动画:YES]; 如果我在此行之后发布详细信息,应用程序将崩溃。

下面是其余的功能代码:

- (void)tableViewUITableView *)tableView didSelectRowAtIndexPathNSIndexPath *)indexPath
{
NSString *message = nil;
NSMutableString *image_string = nil;

DetailViewController *detail = [self.storyboard instantiateViewControllerWithIdentifier"detailview"];

if(tableView == SushiTable)
{
    message = [sushiNames objectAtIndex:indexPath.row];
    image_string = [NSMutableString stringWithString:[sushiImages objectAtIndex:indexPath.row]];
}
if(tableView == SaladTable)
{
    message = [saladNames objectAtIndex:indexPath.row];
    image_string = [NSMutableString stringWithString:[saladImages objectAtIndex:indexPath.row]];
}

[image_string deleteCharactersInRange: [image_string rangeOfString: @"_small"]];

NSMutableString *temp_str = [[message copy] autorelease];
NSString *final = [[[temp_str stringByReplacingOccurrencesOfString" " withString"_"] 
                   stringByReplacingOccurrencesOfString"ä" withString"a"] 
                   lowercaseString];

detail.food_name = message;
detail.image_name = image_string;
detail.food_info_key = final;

[tableView deselectRowAtIndexPath:indexPath animated:YES];
[self.navigationController pushViewController: detail animated: YES];
detail = nil;

}

编辑: 我还看到在DetailViewController的viewDidLoad函数中,下面一行有内存泄漏,不知道是否相关。

food_image.image = [UIImage imageNamed:image_name];

编辑2: 我也在模拟器上运行。



Best Answer-推荐答案


试试看。

 [self.navigationController pushViewController: detail animated: YES];
 [detail release];
 detail = nil;

当你推送一个对象时。现在它被添加到导航堆栈数组中,现在这个对象的数组所有者 所以你应该需要你添加到数组中的释放对象。

关于iphone - 我的 didSelectRowAtIndexPath 函数导致内存泄漏,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12090015/

回复

使用道具 举报

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

本版积分规则

关注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