我有UIButton
和UIView
动画,按下UIButton
时向下滑动。问题是UIView
模糊了UIButton
。我希望UIButton
始终保持最佳状态。
我在viewDidLoad
:
[self.view bringSubviewToFront:categoryBtn];
虽然不起作用。
感谢您的帮助
答案 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];
这允许您在视图堆栈上的按钮下添加新视图,而不是将其添加到按钮上方,然后重新排列视图。