Most UIView-derived classes (ie, all of them) have a .BringToFront method too, and a .SendToBack. Or the container view does....
Maybe just send your imageview to the back? But change the order of how you add them. The last one you add is on the top, I believe. On Fri, Apr 13, 2012 at 03:00, dermotos <[email protected]> wrote: > 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 -- Nic Wise t. +44 7788 592 806 | @fastchicken | http://www.linkedin.com/in/nicwise b. http://www.fastchicken.co.nz/ Earnest: Self-employed? Track your business expenses and income. http://earnestapp.com Nearest Bus: find when the next bus is coming to your stop. http://goo.gl/Vcz1p mobileAgent (for FreeAgent): get your accounts in your pocket. http://goo.gl/IuBU Trip Wallet: Keep track of your budget on the go: http://goo.gl/ePhKa London Bike App: Find the nearest Boris Bike, and get riding! http://goo.gl/Icp2 _______________________________________________ MonoTouch mailing list [email protected] http://lists.ximian.com/mailman/listinfo/monotouch
