我通过使用以下方法UIAlertController
创建类别在我的应用程序中添加:UIViewController
- (void)showAlertViewWithTitle:(NSString *)title
message:(NSString *)message
actions:(NSArray *)alertActions
{
UIAlertController *alertController = [UIAlertController alertControllerWithTitle:title ? : @"" message:message preferredStyle:UIAlertControllerStyleAlert];
if (alertActions.count) {
for (UIAlertAction *action in alertActions) {
[alertController addAction:action];
}
} else {
UIAlertAction *action = [UIAlertAction actionWithTitle:@"OK" style:UIAlertActionStyleDefault handler:nil];
[alertController addAction:action];
}
[self presentViewController:alertController animated:YES completion:nil];
}
起初,一切看起来都很好,但是当我使用 Instruments 分析泄漏时,每次调用此方法时,都会出现一些泄漏:
这是调用的showAlertViewWithTitle:message:actions:
完成方式
[self showAlertViewWithTitle:nil message:@"Test message" actions:nil];
知道为什么我会得到所有这些泄漏吗?
- 编辑 -
我在示例项目中尝试了以下内容:
UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:@"title" message:@"message"
delegate:nil cancelButtonTitle:@"OK" otherButtonTitles:nil];
[alertView show];
我得到了同样的泄漏。我真的不知道发生了什么...