关于UIButton和UIImageView共存的问题

时间:2021-02-06 21:07:32
今天需要在一个UIImageView上面放置几个按钮,发现ios7下面是看不出按钮的轮廓,但是ios6上面按钮就出现了,还遮住了imageview,尽管设置为了clearcolor,后来发现了一个方法。

sendSubviewToBack:

Moves the specified subview so that it appears behind its siblings.

- (void)sendSubviewToBack:(UIView *)view 于是用这个方法把button丢到imageView的后面去了,问题解决了..