I am trying to download images asynchronously and display them in UITableViewCell imageView. The problem is that my NSURL is nil for some reason..
NSString *urlString = feed[@"imageURL"];
NSLog(@"urlString %@", urlString);
NSURL *url = [NSURL URLWithString:urlString];
NSLog(@"url image %@", url);
This will print something like
urlString http://www.....image.jpg
url image (null)
Can someone please tell me why this is happening? Thanks.