Seems to be just a view hierarchy issue. Probably a simple solution would be
to create a container view for all your buttons and add the buttons to this.
Then add this view to your main view, ABOVE your ImageView. (Do this in code
by either inserting the view:

mainView.InsertSubview(buttonContainerView,mainView.Subviews.Count);

or just ensure that when you call AddSubview(buttonContainerView) that you
call it after adding your ImageView to the mainView.

--
View this message in context: 
http://monotouch.2284126.n4.nabble.com/UIButton-Problem-tp4550977p4553612.html
Sent from the MonoTouch mailing list archive at Nabble.com.
_______________________________________________
MonoTouch mailing list
[email protected]
http://lists.ximian.com/mailman/listinfo/monotouch

Reply via email to