在iOS7中。我正在显示UIAlertView
,然后我们会收到通知,其中也会显示UIAlertView
。点击UIAlertView
我的应用程序会在iOS7中闪现。
打印日志
-[AddNotification respondsToSelector:]: message sent to deallocated instance 0x14b53e00
答案 0 :(得分:1)
这意味着您的内存已被释放,如果您使用该特定VC上的任何委托方法删除委托选项,请执行此操作
- (void)dealloc
{
for example if you are used any tableview or else ...
//if you have any table views these would also need to be set to nil
self.tableView.delegate = nil;
self.tableView.dataSource = nil;
}
选项2
启用Instruments
,请参考this