gpt4 book ai didi

swift - 如何在 tableview 页脚中心的中心显示事件指示器?

转载 作者:行者123 更新时间:2023-11-28 11:05:42 28 4
gpt4 key购买 nike

我有一个指标 View 。我如何在 tableview 页脚中心显示它。

my indicator

最佳答案

例如,您可以像这样以编程方式将其居中:

override func tableView(tableView: UITableView, viewForFooterInSection section: Int) -> UIView? {
if section == 0 {
let footerView = UIView(frame: CGRect.zero)
footerView.backgroundColor = UIColor.grayColor()

let activityView = UIActivityIndicatorView(activityIndicatorStyle: .Gray)
footerView.addSubview(activityView)
activityView.startAnimating()

activityView.translatesAutoresizingMaskIntoConstraints = false

NSLayoutConstraint(
item: activityView,
attribute: .CenterX,
relatedBy: .Equal,
toItem: footerView,
attribute: .CenterX,
multiplier: 1.0,
constant: 0.0
).active = true

NSLayoutConstraint(
item: activityView,
attribute: .CenterY,
relatedBy: .Equal,
toItem: footerView,
attribute: .CenterY,
multiplier: 1.0,
constant: 0.0
).active = true

return footerView
} else {
return nil
}
}

关于swift - 如何在 tableview 页脚中心的中心显示事件指示器?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37829234/

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