ActiveDetailHeaderView.swift 749 B

123456789101112131415161718192021222324252627282930
  1. //
  2. // ActiveDetailHeaderView.swift
  3. // xingchuangke
  4. //
  5. // Created by 李晓飞 on 2020/8/31.
  6. // Copyright © 2020 Virgil. All rights reserved.
  7. //
  8. import UIKit
  9. class ActiveDetailHeaderView: UIView {
  10. @IBOutlet weak var bgView: UIView!
  11. @IBOutlet weak var topicLabel: UILabel!
  12. var topic: String = "" {
  13. didSet {
  14. topicLabel.text = topic
  15. }
  16. }
  17. override func draw(_ rect: CGRect) {
  18. let maskPath = UIBezierPath(roundedRect: bgView.bounds, byRoundingCorners: [.topLeft, .topRight], cornerRadii: CGSize(width: 10.0, height: 10.0))
  19. let maskLayer = CAShapeLayer()
  20. maskLayer.frame = bgView.bounds
  21. maskLayer.path = maskPath.cgPath
  22. bgView.layer.mask = maskLayer
  23. }
  24. }