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 272727
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T00:20:58+00:00 2026-05-12T00:20:58+00:00

I actually have two questions regarding exception/error handling in the iPhone app that I

  • 0

I actually have two questions regarding exception/error handling in the iPhone app that I am making:

  1. The app uses Internet, but when there’s no connection, the app just dies (during launch). How can I handle this to print some infomsg to the user, instead of just getting thrown back to the springboard?

  2. Can someone show me an example of how to handle for instance a “page not found” or “no contact with server” error, so I can give some sort of info to the user in the same way as above?

  • 1 1 Answer
  • 1 View
  • 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-05-12T00:20:58+00:00Added an answer on May 12, 2026 at 12:20 am

    For crashes, the first step is to use error messages and the debugger to figure out what call is causing the problem. If the problem is caused by an uncaught exception, read this Apple article on exception handling. The specific answer really depends on your code and exactly what is causing the crash, so I won’t speculate about a particular solution.

    As far as detecting server error response codes (such as 404), that’s more specific to WebKit. I assume you’re using UIWebView on iPhone, and you’ve probably noticed that none of the primary methods return errors. This is because it uses a delegate model to report progress or errors asynchronously. (It makes sense because you don’t want your UI code to be at the mercy of a slow-loading (or non-existent) webpage. To be notified of such errors, there are a few steps.

    1. Adopt the UIWebViewDelegate protocol, usually in the same class that will start the webpage load for convenience.
    2. Set that object as the delegate of the UIWebView instance. (It has a delegate property, so you can use something like either uiView.delegate = self or [uiView setDelegate:self] based on what you prefer.)
    3. Implement the webView:didFailLoadWithError: method in that class. (You can be notified when the load finishing by implementing webViewDidFinishLoad: as well.) This is where you include the logic of what should happen when an error occurs.

    I didn’t see any detailed documentation on the content of any particular errors handed back via this delegate method, but it’s a standard NSError object, and I recommend checking out the contents by calling its methods, such as -localizedDescription and -userInfo.

    Here is some sample code with #import statements excluded for brevity.

    MyClass.h

    @interface MyClass : NSObject <UIWebViewDelegate> {
      IBOutlet UIWebView* myWebView;
    }
    -(void)webView:(UIWebView*)webView didFailLoadWithError:(NSError *)error;
    @end
    

    MyClass.m

    @implementation MyClass
    - (id) init {
      if ((self = [super init]) == nil)
        return nil;
      // initialize myWebView
      myWebView.delegate = self;
      return self;
    }
    
    - (void) webView:(UIWebView*)webView didFailLoadWithError:(NSError*)error {
      ...
    }
    @end
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I actually have two questions regarding the same problem but I think it is
I actually have two questions, the on in the title being the main one.
Actually I have two questions. (1) Is there any reduction in processing power or
I actually have right now two questions: 1) What font faces are preferred for
I have two images they actually do not overlap but I also can't have
I need an XML-serializable dictionary. Actually, I now have two quite different programs that
I have a quick question regarding a database that I am designing and making
I have a question or actually two regarding the Convert.ToInt32 function or Int32.Parse .
It's actually two part question regarding my simple page (that will be replaced some
I actually have two simple questions, I hope. What is the TT used for

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.