I have an image overlay over a UIImageView
Code:
UIImage *overlayImage = [UIImage imageNamed:@"image.png"];
UIImageView *overlayImageView = [[UIImageView alloc] initWithImage:overlayImage];
[self.thumbnail addSubview:overlayImageView];
That works great the only problem is the overlay image is pretty pixilated. I used the same resolution as the UIImageView. I will attach a picture to show you.
Any ideas how to fix it?