如何强制UIButton始终位于顶部

时间:2013-01-07 12:31:38

标签: iphone objective-c ios uiview uibutton

我有UIButtonUIView动画,按下UIButton时向下滑动。问题是UIView模糊了UIButton。我希望UIButton始终保持最佳状态。

我在viewDidLoad

中试过这个
    [self.view bringSubviewToFront:categoryBtn];

虽然不起作用。

感谢您的帮助

2 个答案:

答案 0 :(得分:6)

在此主视图中添加任何UIView或任何其他视图后,只需添加此行以将其作为按钮的超级视图

[self.view bringSubviewToFront:categoryBtn];

对于按钮操作事件的示例,您可以添加任何视图,然后使用类似下面的代码..

-(IBAction)yourButton_Clicked:(id)sender
{

   ///Add some code or view here and then after write this line here see bellow line
   [self.view bringSubviewToFront:categoryBtn];
}

答案 1 :(得分:3)

另一个答案是可行的,但这正是添加“insertSubview:belowSubview”的事情。

[self.view insertSubview:myNewView belowSubview:_categoryBtn];

这允许您在视图堆栈上的按钮下添加新视图,而不是将其添加到按钮上方,然后重新排列视图。