在iOS 9.0之前,如何隐藏禁用segue动画?

时间:2017-07-10 08:36:09

标签: ios xcode segue

我正在使用Xcode 8.3.3,需要使用iOS 8.0进行一些功能集成。 但我在Xcode 8.3.3中收到警告,因为在iOS 9.0之前无法使用禁用segue动画。 我想删除此警告。

4 个答案:

答案 0 :(得分:0)

UIView.setAnimationsEnabled(假)     self.performSegueWithIdentifier(“next”,sender:nil)     UIView.setAnimationsEnabled(真)

答案 1 :(得分:0)

试试这个

 UIView.setAnimationsEnabled(false)
 self.performSegueWithIdentifier("goToVC", sender: nil)
 UIView.setAnimationsEnabled(true)

答案 2 :(得分:0)

要停用该警告,请转到情节提要中的“属性”面板,然后您可以在其中看到选项构建下拉列表。现在将此值更改为9.0或更高版本。下面是显示属性面板的图片

enter image description here

答案 3 :(得分:0)

我想你想抑制这个警告。我试过这个。只需在segue的Attributes检查器中修改导致问题的属性,然后选择动画复选标记。 select