我有一个带有一个按钮的 iphone 示例应用程序。点击它会调用代码:
UIAlertView *alert = [[UIAlertView alloc]
initWithTitle:@"test"
message:@"test"
delegate:self
cancelButtonTitle:@"Ok"
otherButtonTitles: nil];
[alert show];
应用程序已启用 ARC。
问题是,如果我单击警报中的确定按钮,应用程序会因 EXC_BAD_ADDRESS 崩溃 - 可能是因为警报已被弧删除。
有什么推荐的方法来解决这个问题?不向视图控制器添加属性
谢谢