I draw a border on my UIImageView...
[[albumImage layer] setBorderColor:[[UIColor whiteColor] CGColor]];
[[albumImage layer] setBorderWidth:10.0];
But those extra 10 pixels are drawn inside the image view. Part of my image is cut off! I want to either:
- Shrink the UIImage with a 0.96 factor so it fits inside the border.. or
- Shrink the UIImageView down 10 pixels on each side in IB, then draw the border outside the image view
Using contentMode
, transform
, and contentScaleFactor
haven't been the correct solution. The last two scale the entire image view (including the border). Content mode just changes how the image fits in the view (which has already been set, in my case)