"How to Make a Website" was retired on March 24, 2020. You are now viewing the recommended replacement.

Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

iOS Build a Blog Reader iPhone App Adapting Data for Display Handling Malformed Data

Tollman Owens
Tollman Owens
3,791 Points

Xcode 6.2 throwing null exception in BlogPost instance method thumbnailURL instead of in TableViewController

Looks like Xcode is doing a better job catching errors earlier in the execution.

I dumped the if else statement in the tableView:cellForRowAtIndexPath

and added within BlogPost.m

-(NSURL *) thumbnailURL
{
  NSURL *urlForThumbnail;

  if ([_thumbnail isKindOfClass:[NSNull class]]) {
    // local resource
    urlForThumbnail = [[NSBundle mainBundle] URLForResource:@"treehouse" withExtension:@"png"];

  }else{
      // remote resource
      urlForThumbnail = [NSURL URLWithString:_thumbnail];
  }

  return urlForThumbnail;
}

It now runs as intended. Thoughts?