I'm using a UIScrollView with
self.scrollView.minimumZoomScale=0.8;
self.scrollView.maximumZoomScale=1.8;
However, when the view loads, it loads at a 1.0 scale by default.
I'd like to load at 0.8 instead. Setting self.scrollView.zoomScale = 0.8; doesn't seem to work. Any ideas? Thanks
*Problem solved. You can set the zoomScale property, however, you must set it AFTER all your scrollView content is loaded.