Malloc
Malloc

Reputation: 16276

How to make the UIImageView appear above the MapView

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:

enter image description here

Upvotes: 2

Views: 2017

Answers (2)

Audun Kjelstrup
Audun Kjelstrup

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

Totumus Maximus
Totumus Maximus

Reputation: 7573

Have you tried?:

[someView bringSubviewToFront:myImageView];

Put this after you added your mapview to your mainview.

Upvotes: 4

Related Questions