I want to have a UIScrollView
that scrolls less then the full screen so that it looks like the Safari app does when you go to make a new tab or look at all the tabs. What property would this be?
views:
60answers:
1
A:
When viewing "tabs" in Mobile Safari each tab is a UIWebView placed in a paged UIScrollView. When you "zoom out" to switch between them a CGAffineTransform
to reduce the scale of the web view is being applied.
Greg Martin
2010-01-08 19:45:46