UIImage has no framework. It has only width and height. If you want to place it in your view, you must create a UIImageView
UIImageView *imageView = [[UIImageView alloc] initWithFrame:CGRectMake(12,12,123,123)]; imageView.image = image; // image - your UIImage
Dmitry
source share