请帮我找出崩溃的原因。我知道有很多同名的问题,但我找不到解决我的问题的方法。我的问题是我的 ios7 应用程序崩溃(访问错误),旧版本可以正常工作。这是我的代码:
- (void)updateLine:(NSNotification*)notification
{
BOOL registered =[(notification.userInfo)[kRADialePushViewNotificationRegistration] boolValue];
if (!registered) {
if (self.navigationController) {// it crash this line
[self.navigationController popViewControllerAnimated:YES];
}
}
}