gpt4 book ai didi

ios - UITableView 的 header 无法与 UIViewAnimationOptions.Repeat 一起使用

转载 作者:搜寻专家 更新时间:2023-10-31 22:42:45 26 4
gpt4 key购买 nike

我想让表格 View 的标题闪烁,但它不起作用。

func tableView(tableView: UITableView, viewForHeaderInSection section: Int) -> UIView? {

let headerView = UIView()
headerView.backgroundColor = UIColor.redColor()

UIView.animateWithDuration(
0.3, delay: 0,
options: UIViewAnimationOptions.Repeat,
animations: { headerView.alpha = 0 },
completion: nil)

return headerView
}

最佳答案

在调用动画之前必须设置 UIView.setAnimationsEnabled(true);:

func tableView(tableView: UITableView, viewForHeaderInSection section: Int) -> UIView? {

let headerView = UIView()
headerView.backgroundColor = UIColor.redColor()

UIView.setAnimationsEnabled(true)

UIView.animateWithDuration(
0.3, delay: 0,
options: UIViewAnimationOptions.Repeat,
animations: { headerView.alpha = 0 },
completion: nil)

return headerView
}

关于ios - UITableView 的 header 无法与 UIViewAnimationOptions.Repeat 一起使用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43494271/

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