I tried fetching the image location but its not displaying it in UIImageView, the code which is used for fetching is,
in class.h file,
@property (strong, nonatomic) IBOutlet UIImageView *imageview;
class.m file,
NSString *imagee;
imagee = [result objectForKey:@"image"];
NSLog(@"image is %@ \n",imagee);
the 'imagee' string could return the exact url for the image.
code for image displaying is,
UIImage *imagevieww = [UIImage imageNamed:[result objectForKey:@"image"]];
imageview.image = imagevieww;
but at final i could get the empty space where the image should be placed.