我在这里的第一篇文章。似乎我遇到了一些内存泄漏问题。
我有一个包含两列的标签栏,一列用于沙拉,另一列用于寿司。在每个选项卡中,我还有一个显示不同食物选择的表格 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: 我也在模拟器上运行。
试试看。
[self.navigationController pushViewController: detail animated: YES];
[detail release];
detail = nil;
当你推送一个对象时。现在它被添加到导航堆栈数组中,现在这个对象的数组所有者 所以你应该需要你添加到数组中的释放对象。
关于iphone - 我的 didSelectRowAtIndexPath 函数导致内存泄漏,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12090015/
欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) | Powered by Discuz! X3.4 |