So this is my Code:
TableViewController.h
@interface TableViewController : UITableViewController
@property (nonatomic, strong) NSArray *blogPosts;
@end
TableViewController.m
- (void)viewDidLoad
{
[super viewDidLoad];
NSURL *blogURL = [NSURL URLWithString:@"http://blog.teamtreehouse.com/api/get_recent_summary/"];
NSData *jsonData = [NSData dataWithContentsOfURL:blogURL];
NSError *error = nil;
NSDictionary *dataDictionary = [NSJSONSerialization JSONObjectWithData:jsonData
options:0 error:&error];
self.blogPosts = [dataDictionary objectForKey:@"posts"];
}
With this being displayed on the log
2014-04-15 20:21:48.884 BlogReader[772:60b] Cannot find executable for CFBundle 0xa181ef0 (not loaded)