hockeyapp不了解崩溃日志

时间:2015-10-11 13:17:39

标签: ios iphone crash hockeyapp

我正在使用hockeyapp来获取崩溃报告。 我怎么能理解我的应用程序崩溃了哪个类/方法/行?

enter image description here

2 个答案:

答案 0 :(得分:6)

要充分利用HockeyApp的崩溃报告,您应该将dSYM符号文件上传到网站。这将为您提供完全符号化的崩溃日志,其中明确说明发生崩溃的文件,方法和行号。

Screenshot of the HockeyApp website

有关如何操作的详细说明,请参阅this support article

答案 1 :(得分:0)

您将图像设置/指定为参数/参数的位置。这个图像是零,但这个图像不应该是零。

例如:

-(void)setImageOnExampleView:(UIImage*)image{
  //if here is image = nil and if you call this method anywhere such crash will happen
  [yourImageView setImage:image];
} 

因此,要检测发生此类崩溃的位置,请在可能的位置设置图像;你应该设置" Break Point并调试发生崩溃的方法的类别。