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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T11:43:04+00:00 2026-05-15T11:43:04+00:00

Here is the problem: The app crashes at the 2nd line, and I got

  • 0

Here is the problem:

The app crashes at the 2nd line, and I got EXC_BAD_ACCESS exception.

NSURL *url = [NSURL URLWithString:@"..."];

NSError *error = nil;
NSData *data = [NSData dataWithContentsOfURL:url 
          options:NSDataReadingMapped 
            error:&error];
NSLog(@"Error: %@", error);
NSLog(@"%@", [data length]);

I got:

Error: (null)
Program received signal:  “EXC_BAD_ACCESS”.

Any idea?

  • 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-15T11:43:04+00:00Added an answer on May 15, 2026 at 11:43 am

    The length of the data is an unsigned integer, not an object, so you have to use an appropriate format specifier. So:

    NSLog(@"%lu", (unsigned long)[data length]);
    

    will work. For more information, see the format specifiers for NSLog in the documentation.

    Also, you should never check error unless the method indicates an error state (see the appropriate documentation for each method that also reports errors). It may contain unexpected data even in the event that no error occurred. So:

    if( !data ) {
      NSLog(@"An error must have occurred: %@, %@", error, [error userInfo]);
    } else {
      NSLog(@"The data length: %lu", (unsigned long)[data length]);
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a c# wpf app which crashes randomly and my error handling does
I'm getting an error in my Android app that says source not found and
I am trying to access the UITextView delegates and have a problem I have
I keep getting crashes from a save: command on a managedObjectContext. It doesn't even
I've been having a problem to show large images on a scrollview, the images
I'm using the AVFoundation classes to capture the live video stream from the camera
Friends i am new to cocos2d programming and Mac in general! I have noticed
I am having problems with the context in Core Data not being able to
I've inherited a C# application that lists data from a database table via a
I have a view with a scrollview. I use code to add labels to

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.