Reputation: 15
Is it possible to get the same coordinates from UIScrollView
whether it's zoomed or not.
That is, For example, consider a plain screen of 320.0F and 480.0F.
The Thing is, I want to have the same coordinate value whether the view is zoomed or not. The idea is simple. I want to show images zoomed & interactive without changing its coordinate. Considering an UIScrollView
applied of the idea with its height of 1.0 and width of 0.66, I think there would be some pros programming this way, when making an interactive app without using OpenGL, cocos2d or whatever 3D engines out there.
Do you guys have any idea if it's supported or not? Either case, please don't wait any second to reply. Thanks
Upvotes: 0
Views: 654
Reputation: 5418
You can calculate it by yourself using content size as follows,
Upvotes: 1