标签: ios xcode ipad memory-leaks automatic-ref-counting
我是iOS开发的新手。我的应用程序似乎堆积了死记忆。我唯一能追溯到的是performSegueWithIdentifier函数。
performSegueWithIdentifier
- (IBAction)segueNext:(id)sender { [self performSegueWithIdentifier:@"segueForward" sender:self]; }
以下是我分析的一些截图。
我没有正确执行此方法调用吗?或者当我使用ARC时如何释放? 感谢您的任何建议!