Ramon Johannessen
Ramon Johannessen

Reputation: 183

iPhone app crashing on some devices -- looking for advice

Hey everyone, I'm in a bit of a pickle and am looking for some advice. I have an app that's been released to the app store..nothing special just a first time sort of thing. The app runs perfectly fine on my device(s) but a couple buddies always get a crash. So here's the details:

It crashes by sometimes stalling and other times by just exiting to the main screen.

The only thing that MAY be different is any other apps on their phones that are not on mine.

The fact that I cannot replicate with exactly the same setup leads me to believe it's a memory issue, maybe uninitialized variables or incorrect cleanup at some point (i'm from C++, so I know this sort of thing can vary from machine to machine). I'm somewhat new to obj C and may very well be missing something there. I'm just curious to hear what others have to say, does this sound like a memory issue with the info I've provided? Any other ideas to test/suggestions come to mind to try and reproduce the crash?

Thanks!

Upvotes: 0

Views: 239

Answers (1)

Michael
Michael

Reputation: 784

One possibility is that it's a backgrounding issue. You don't say whether your app tries to use those features or whether your friends experience the crash in that context, so it's hard to say.

I would provision your friends with a beta that logs verbosely if you can't pin it down.

Upvotes: 1

Related Questions