Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要让一个物体总是在前面UIView
UIView
不干扰这个动作
- (IBAction)botonArribaMenu:(id)sender { [self.view bringSubviewToFront:_propArribaRegresar]; }
使用以下任一 UIView 方法来控制深度。
– bringSubviewToFront: – sendSubviewToBack: – insertSubview:atIndex: – insertSubview:aboveSubview: – insertSubview:belowSubview:
每个超级视图将其子视图存储在有序数组中,并且该数组中的顺序也会影响每个子视图的可见性。如果两个同级子视图相互重叠,则最后添加的(或移动到子视图数组末尾的)出现在另一个之上。