Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8402585
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 9, 20262026-06-09T22:06:40+00:00 2026-06-09T22:06:40+00:00

I know in Android, there is a pretty reliable built-in system for notifying me

  • 0

I know in Android, there is a pretty reliable built-in system for notifying me of crashes that happen. They almost immediately write the stack trace and some other info into a Google doc. it works tremendously well.

I started researching the same thing for ios, and I am not finding anything similar that is equally effective. I read this article: Xcode storyboard: Why does the iPad storyboard show iPhone sized views?

but I am not sure if this is still the case. Could anyone recommend me what to use for crash reports that happen on user devices?

Thanks!

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-09T22:06:41+00:00Added an answer on June 9, 2026 at 10:06 pm

    I’m using Flurry with an uncaughtExceptionHandler and GTMStackTrace

    The exception handler can look like this:

    void uncaughtExceptionHandler(NSException *exception) 
    {
        @try 
        {
            NSString *fullBacktrace = GTMSBStackTraceFromException(exception);
            NSMutableString *backtrace = [NSMutableString stringWithUTF8String:""];
            NSArray *backtraceArray = [fullBacktrace componentsSeparatedByString:@"\n"];
            for (id entry in backtraceArray) 
            {
                NSRange testRange = [entry rangeOfString:[[NSBundle mainBundle] objectForInfoDictionaryKey:@"CFBundleName"]];
                if (testRange.length)
                { 
                    [backtrace appendString:entry];    
                }
            }
    
            NSCharacterSet *whitespaces = [NSCharacterSet whitespaceCharacterSet];
            NSPredicate *noEmptyStrings = [NSPredicate predicateWithFormat:@"SELF != ''"];
    
            NSArray *parts = [backtrace componentsSeparatedByCharactersInSet:whitespaces];
            NSArray *filteredArray = [parts filteredArrayUsingPredicate:noEmptyStrings];
            NSString *strippedBacktrace = [filteredArray componentsJoinedByString:@" "];   
            [FlurryAnalytics logError:@"uncaughtExceptionHandler"
                              message:[NSString stringWithFormat:@"%@", strippedBacktrace ? strippedBacktrace : @"no matching backtrace"]
                            exception:exception];
        }
        @catch (NSException *exception) 
        {
            NSLog(@"whoa!  could not handle uncaught exception!");
            [FlurryAnalytics logError:@"uncaughtExceptionHandler"
                              message:@"no matching backtrace"
                            exception:exception];
        }
    }
    

    Testflight has a good crash log too.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I know Android is open source, but are all the apps that they make
we all know the android system database should be stored in /data/data/package name/ directory,there
I know this is the list of permissions in android Is there any new
Does anyone know if there is a google goggles API for Android? If not,
I would like to know if there is a way in Android to have
I would know if there is the possibility to create a new Android Activity
I am not familiar with android programming, I wish to know if there is
I know that Android has a JSON parser baked in but I was wondering
I had some experience of android but know almost nothing of GCC Makefile. Here
Does anyone know if there are Android 2.X or higher devices out there with

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.