gpt4 book ai didi

ios - 仪器 xcode4 不工作?

转载 作者:行者123 更新时间:2023-11-29 04:58:09 28 4
gpt4 key购买 nike

我正在关注 Ray Wenderlich tutorial for instruments ,但我不知道为什么分析没有显示泄漏的对象?

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {

NSString * sushiName = [_sushiTypes objectAtIndex:indexPath.row];
NSString * sushiString = [NSString stringWithFormat:@"%d: %@", indexPath.row, sushiName];

NSString * message = [NSString stringWithFormat:@"Last sushi: %@. Cur sushi: %@", _lastSushiSelected, sushiString];
UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:@"Sushi Power!"
message:message
delegate:nil
cancelButtonTitle:nil
otherButtonTitles:@"OK", nil];
[alertView show];

//_lastSushiSelected = sushiString; //el que jode, pues lo pone en string deallocada, por strinWithFormat que usa autorelease!
_lastSushiSelected = [sushiString retain];

//[alertView release];
}

我正在使用教程中的代码,正如您所看到的,alertView 正在泄漏!

但是我通过仪器泄漏运行它,但什么也没有出现! [确认按下停止按钮以停止分析也非常非常非常慢!]

Leaks not detected

那么缺少什么??,

非常感谢!

最佳答案

坦白说,我认为这是一个错误。希望它很快就会被修复(我使用的是 v4.1),但一切并没有丢失。在分配工具下,您可以过滤显示的类型。在这张图片中,我告诉它显示 UIAlertView 实例。单击 UITableView 几次后,您可以看到它告诉我有 2 个实例存在,这证实存在泄漏。

enter image description here

关于ios - 仪器 xcode4 不工作?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7551222/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com