我正在尝试分析为App Store应用程序提供Xcode的崩溃报告。
但无法分析“ - [NSObject(NSObject)doesNotRecognizeSelector:]”的原因
我已按照此链接在Xcode项目中打开崩溃,以检查我得到的这行但没有用Apple crash reports analysing
我甚至提到过:iOS Crash Log NSObject doesNotRecognizeSelector: - at which line?
此处报告
中未提及哪一行崩溃如果有人遇到类似问题,请帮助我找到此崩溃或任何参考链接。
更新
NSString *deviceToken = [SharedData deviceToken];
//Some times this device token is giving null ..may be this can be reason
NSDictionary *params = @{
@"MobileNumber":[[NSUserDefaults standardUserDefaults]objectForKey:@"MobileNumber"],
@"Password":[[NSUserDefaults standardUserDefaults]objectForKey:@"Password"],
@"DeviceId":deviceToken,
@"DeviceType":@"1",
@"UID":deviceToken,@"UserLatitude":[NSString stringWithFormat:@"%f",[[[SharedData userInfo] valueForKey:@"lat"] floatValue]],@"UserLongitude":[NSString stringWithFormat:@"%f",[[[SharedData userInfo] valueForKey:@"long"] floatValue]]
};
NSLog(@"params: %@",params );
[self loginServiceCallWithParams:params];
YES [SharedData deviceToken]有时会返回null ..现在修复此问题后,我在App Store崩溃报告中没有收到此错误