Last active
November 23, 2015 18:14
-
-
Save dimohamdy/e00fcbab53d1f5abbe72 to your computer and use it in GitHub Desktop.
UIImageView aspect fill
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This preserves aspect, fills it up, and then clips overflows: | |
self.viewTitleImageView.contentMode = UIViewContentModeScaleAspectFill; | |
[self.viewTitleImageView setClipsToBounds:YES]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment