我将栏按钮项添加到导航项。
但是我发现我设置了动画NO或YES,barbuttonitems从左到右总是有动画。
如何在设置栏按钮项目时取消动画。
我的代码如下:
{% assign value = data_value %}
非常感谢你。
答案 0 :(得分:0)
您需要隐藏并在alpha
属性中显示右键。
显示强>
[self.navigationItem.rightBarButtonItem.customView setAlpha:1.0];
<强>隐藏强>
[self.navigationItem.rightBarButtonItem.customView setAlpha:0.0];
<强>动画强>
[UIView animateWithDuration:0.2 animations:^{
[self.navigationItem.rightBarButtonItem.customView setAlpha:1.0];
}