0

Is it possible/safe to make an UIKit based app zoomable globally? (The entire app view is pinch zoomable).

I think it similar with web page (html based app) zoom functionality inside UIWebview.

Brad Larson
  • 170,088
  • 45
  • 397
  • 571
deden
  • 35
  • 5

1 Answers1

0

Yes, it is possible.

To achieve this, just add your UIView to a UIScrollView that covers the whole window.

Iñigo Beitia
  • 6,303
  • 4
  • 40
  • 46
  • Thanks for the clue, Btw, this post http://stackoverflow.com/questions/1990458/zoom-uilabel-re-render-font-at-correct-size and http://stackoverflow.com/questions/448285/how-do-i-reset-after-a-uiscrollview-zoom/451629#451629 will be helpful to me in my problems. – deden Aug 11 '11 at 03:17