I have a class that runs similar to the AFHTTPSessionManager component of this tutorial http://www.raywenderlich.com/59255/afnetworking-2-0-tutorial
However, [self.t
write the [self.tableView reloadData];in the main queue.
[self.tableView reloadData];
dispatch_sync(dispatch_get_main_queue(), ^{ [self.tableView reloadData]; });
Always reload on the main queue:
dispatch_async(dispatch_get_main_queue(), ^{ [self.tableView reloadData]; });