UIImage-PDF
UIImage-PDF copied to clipboard
Suggestions for setting image in button
I have been having problems where the image placed in a button will always scale to fill the button, instead of respecting the provided sizes. I realize it's not the UIImage+PDF problem per se, but do you have any suggestions? Setting a standard PNG file yeilds the right results. self.logoImageButton.contentMode = UIViewContentModeScaleAspectFit; UIImage *someImage = [UIImage imageWithPDFNamed:@"Logo.pdf" atSize:CGSizeMake(500, 275)]; [self.logoImageButton setImage:someImage forState:UIControlStateNormal];