showing image in UIImageView from pasteboard regardless of imgae types jpg, gif etc

if([pasteboard hasImages]){

NSLog(@"hasImages");

NSData *data = [pasteboard dataForPasteboardType:kCIAttributeTypeImage];

[_imgView setImage:[UIImage imageWithData:data]];

}


The image isn't shown.

What's wrong?