I've read a couple posts here about zooming Zoom UILabel & Re-render font at correct size
but I'm still not getting it. I have a UIScrollView that just has some UILabel and UIView (colored rectangles) in it. In the delegate method scrollViewDidEndZooming, I try to do something like:
[self.label setFont:[UIFont fontWithName:@"Arial" size:16*scale];
just to see if the label would look good and scale. I also tried 16/scale and both do not seem to be correct. (16 is the size that is set in IB).
Anyone have any thoughts on how to zoom/scale properly? Thanks.