Reputation: 16276
I am willing to get the ImageView appear above the MapView because it contains two buttons, however, what ever i did, the MapView still Hiding the UIImageView:
Upvotes: 2
Views: 2017
Reputation: 1430
There is a column to your left when you are looking at interface files, that show the objects associated with you .xib. The bottom-most object will be the one that is in front of all the others
Upvotes: 5
Reputation: 7573
Have you tried?:
[someView bringSubviewToFront:myImageView];
Put this after you added your mapview to your mainview.
Upvotes: 4