gpt4 book ai didi

uiview - 可能是 Swift 编译器错误?

转载 作者:行者123 更新时间:2023-11-28 10:02:09 25 4
gpt4 key购买 nike

我想用swift做最简单的动画

UIView.animateWithDuration(UINavigationControllerHideShowBarDuration, animations: { () -> Void in
return
})

但是我在调​​用中得到参数'delay'的Missing argument

有什么想法吗?

最佳答案

UINavigationControllerHideShowBarDuration 是一个Float,但是duration:参数的类型为 NSTimeInterval(这是 Double 的别名)。因此你有显式转换:

UIView.animateWithDuration(NSTimeInterval(UINavigationControllerHideShowBarDuration), animations: { () -> Void in
return
})

关于uiview - 可能是 Swift 编译器错误?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26594164/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com