Is it possible to add image in an UIAlertView, like showing an image from the plist file?
Note for IOS 7 and above
if (floor(NSFoundationVersionNumber) > NSFoundationVersionNumber_iOS_6_1) { [alert setValue:imageView forKey:@"accessoryView"]; }else{ [alert addSubview:imageView]; }