答案 0 :(得分:1)
我能想到的最简单的方法:
import UIKit
class ViewController: UIViewController, UITableViewDataSource, UITableViewDelegate {
@IBOutlet weak var tableView: UITableView!
override func viewDidLoad() {
super.viewDidLoad()
tableView.register(UITableViewCell.self, forCellReuseIdentifier: "cell")
tableView.delegate = self
tableView.dataSource = self
}
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return 50
}
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "cell", for: indexPath)
cell.textLabel?.text = "Cell #\(indexPath.row)"
return cell
}
func scrollViewDidScroll(_ scrollView: UIScrollView) {
if let tableView = scrollView as? UITableView {
for cell in tableView.visibleCells {
adjustCellColor(cell: cell)
}
}
}
func adjustCellColor(cell: UITableViewCell) {
let cellFrame = tableView.convert(cell.frame, to: view)
if cellFrame.contains(view.center) {
cell.textLabel?.textColor = UIColor.red
} else {
cell.textLabel?.textColor = UIColor.black
}
}
}
请记住,UITableView
是UIScrollView
的子类(并且UITableViewDelegate
协议继承自UIScrollViewDelegate
协议),因此当您的视图控制器是{的委托时1}}您可以实施UITableView
等UIScrollViewDelegate
方法。滚动表视图时会调用此方法。它遍历所有可见单元格,如果单元格位于视图中心,则将文本颜色设置为红色,否则设置为黑色。