在中心位置时在UICollectionViewCell上添加掩码

时间:2017-01-12 14:27:38

标签: ios swift

我有一个包含自定义单元格的集合视图。当单元格在视图中居中时,我不能理解如何将集合视图中的UILabel从黑色变为红色。

enter image description here

1 个答案:

答案 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
        }
    }
}

请记住,UITableViewUIScrollView的子类(并且UITableViewDelegate协议继承自UIScrollViewDelegate协议),因此当您的视图控制器是{enter image description here的委托时1}}您可以实施UITableViewUIScrollViewDelegate方法。滚动表视图时会调用此方法。它遍历所有可见单元格,如果单元格位于视图中心,则将文本颜色设置为红色,否则设置为黑色。