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

  • Home
  • SEARCH
  • 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
  • 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-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

Ask A Question

Stats

  • Questions 141k
  • Answers 142k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer Could you not call your functions and head info all… May 12, 2026 at 8:11 am
  • Editorial Team
    Editorial Team added an answer what is an Assembly? A physical unit of deployment. What… May 12, 2026 at 8:11 am
  • Editorial Team
    Editorial Team added an answer It depends on the database you are using. One option… May 12, 2026 at 8:11 am

Related Questions

I am reading a binary log file produced by a piece of equipment. I
I actually have two questions regarding the same problem but I think it is
No doubt some of you have seen my recent posting, all regarding the same
I know, I quite dislike the catch-all survey type questions, but I couldn't think

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.