iphone - Background of my view hides buttons -



I set an image as the background for my view, but when I add a button, It does not appear to hide the image button Can you help me :)

So you have Is there a UIView in which a UIImageView (background image) and some UIButtons?

When you add UIButtons to the code, do the following for each button:

  [self.view bringSubviewToFront: aButton];    

Comments

Popular posts from this blog

qt - switch/case statement in C++ with a QString type -

python - sqlite3.OperationalError: near "REFERENCES": syntax error - foreign key creating -

Python's equivalent for Ruby's define_method? -