user5132182
user5132182

Reputation: 31

hockeyapp not understand crash logs

Im using hockeyapp to get crash reports. How can i understand at which class/method/line did my application crashed ?

enter image description here

Upvotes: 0

Views: 468

Answers (2)

Lukas Spieß
Lukas Spieß

Reputation: 2468

To get the most use out of crash reports from HockeyApp, you should upload your dSYM symbol files to the site. This will give you fully symbolicated crash logs where it clearly states the file, method and line number where your crash is occurring.

Screenshot of the HockeyApp website

For detailed instructions on how to do that, see this support article.

Upvotes: 6

Jamil
Jamil

Reputation: 2999

Some where you set/assign image as a parameter/argument. and this image is nil in case but this image should not be nil.

for example:

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

So, to detect where this crash occur, in possible places, where you are setting image; you should set "Break Point and debug in which classes of which method this crash occur.

Upvotes: 0

Related Questions