Is there a way I can check if there is valid image in the NSData I've loaded into my UIImage object?
The UIImage is loading in from NSData dataWithContentsOfURL:
UIImage *image = [UIImage imageWithData:[NSData dataWithContentsOfURL:[NSURL URLWithString:MyURL]]];
Thanks