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 trialTollman Owens
3,791 PointsXcode 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?