gpt4 book ai didi

swift - 如何在 UITableView 中为 textLabel 的 alpha 设置动画?

转载 作者:搜寻专家 更新时间:2023-11-01 05:59:26 25 4
gpt4 key购买 nike

嘿伙计们,当表格滚动时,我试图从 UITableView 更改默认 taxtLabel 的 alpha,但我收到此错误:

Cannot invoke 'animateWithDuration' with an argument list of type '(FloatLiteralConvertible, animations: () -> () -> $T2)'

我的代码是这样的:

override func scrollViewDidScroll(scrollView: UIScrollView) {
for cell in tableView.visibleCells() {
UIView.animateWithDuration(0.5, animations: {
cell.textLabel??.alpha = 0.0
})
}
}

最佳答案

在闭包末尾添加一个空的return语句

UIView.animateWithDuration(0.5, animations: {
cell.textLabel??.alpha = 0.0
return // <== add this
})

您正在使用具有隐式返回的紧凑(缩短)闭包版本。发生的情况是您的代码被编译器读取为:

return cell.textLabel??.alpha = 0.0

这与闭包签名不匹配,因此出现编译错误。添加 return 语句可以明确表示闭包没有返回值。

关于swift - 如何在 UITableView 中为 textLabel 的 alpha 设置动画?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26263973/

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