Skip to content

Instantly share code, notes, and snippets.

@nvkiet
Created July 18, 2014 17:11
Show Gist options
  • Save nvkiet/b6810366d62bc9e59493 to your computer and use it in GitHub Desktop.
Save nvkiet/b6810366d62bc9e59493 to your computer and use it in GitHub Desktop.
UIImage stretchableImageWithLeftCapWidth
- (UIImage *) resizableImageWithSize:(CGSize)size
{
if( [self respondsToSelector:@selector(resizableImageWithCapInsets:)] )
{
return [self resizableImageWithCapInsets:UIEdgeInsetsMake(size.height, size.width, size.height, size.width)];
} else {
return [self stretchableImageWithLeftCapWidth:size.width topCapHeight:size.height];
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment