For my app, I would like to have some sort of view that will hold an image (specifically, an image of my office's floor plan). As the image does not fit in the screen, I should be able to pan it.
I also intend to have two buttons (outside of the view?) to go up a level and go down a level and these will change the floor plan image correspondingly.
My question is: should I create a class for "MyMapView
" or one for "MyMapViewController
", or both?
And also, should I extend UIScrollView/UIScrollViewController
or create an instance of this as a property of the map class I'm creating?