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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 17, 20262026-05-17T23:51:15+00:00 2026-05-17T23:51:15+00:00

Hey everbody. How can i handle a error with the TBXML? I mean, if

  • 0

Hey everbody. How can i handle a error with the TBXML? I mean, if dont find the file, or what else. Actually, my app just crashes when i turn off the server where the file is.

So, how can i handle that?

- (void)viewDidLoad {

    TBXML * tbxml = [[TBXML tbxmlWithURL:[NSURL URLWithString:@"http://localhost/dev/mcomm/produto.xml"]] retain];
    TBXMLElement * rootXMLElement = tbxml.rootXMLElement;



}

Thanks!

  • 1 1 Answer
  • 3 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-17T23:51:15+00:00Added an answer on May 17, 2026 at 11:51 pm

    If the error’s coming from the line where you instantiate tbxml you could try wrapping it in a @try/@catch block:

    TBXML *tbxml = nil;
    @try {
        tbxml = [[TBXML tbxmlWithURL:[NSURL URLWithString:@"http://localhost/dev/mcomm/produto.xml"]] retain];;
    }
    @catch (NSException *exception) {
        NSLog(@"Caught %@: %@", [exception name], [exception reason]);
    }
    

    Alternatively, download the XML data separately using NSURLConnection and use NSURLConnection’s delegate methods to handle error conditions. On success, pass the resulting data to a constructor such as tbxmlWithXMLData:.

    EDIT: you’ve commented that the line causing the problem is:

    TBXMLElement * xmlElement = aParentXMLElement->firstChild;
    

    The error you’re getting is because you’re trying to dereference a null pointer (aParentXMLElement is nil, and calling ->someMethod on it dereferences it). So all you need there is a guard clause to check aParentXMLElement is non-null before you attempt to dereference it. Something like this:

    if (aParentXMLElement != nil) {
        TBXMLElement * xmlElement = aParentXMLElement->firstChild;
    } else {
        NSLog(@"Can't proceed: aParentXMLElement is nil");
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Hey I can't figure out an error I got. I had my App working
Hey I've been struggling with this whole day, and I can't find the answer
Hey everbody. I have a little issue here. I just want to scale my
Hey i have been looking around and i cant find a way to get
*Hey , I have finished developing my app In my iphone apps I have
Hey I just started dabbling with android programming, and from my short period of
Hey I am getting this error: error: conversion to non-scalar type requested Here are
Hey I'm building an app that will allow a user to log into a
Hey i am new to iOS development, in my app i want to fetch
Hey everybody, I want to create an app that handles some sort of recognition

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.