BankCardCel.swift 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. //
  2. // BankCardCel.swift
  3. // xingchuangke
  4. //
  5. // Created by Apple on 2020/10/23.
  6. // Copyright © 2020 Virgil. All rights reserved.
  7. //
  8. import UIKit
  9. class BankCardCel: UIView {
  10. var imageView = UIImageView.init()
  11. var titleLabel = UILabel.init()
  12. var tipLabel = UILabel.init()
  13. var btn = UIButton.init()
  14. override init(frame: CGRect) {
  15. super.init(frame: frame)
  16. setupSubViews()
  17. }
  18. required init?(coder: NSCoder) {
  19. fatalError("init(coder:) has not been implemented")
  20. }
  21. func setupSubViews() {
  22. self.backgroundColor = .red
  23. self.layer.cornerRadius = 5
  24. self.backgroundColor = .white
  25. let width = Int((kScreenWidth-40)/3)
  26. imageView.frame = CGRect(x: width/2-30, y: 20, width: 60, height: 60)
  27. self.addSubview(imageView)
  28. tipLabel.frame = CGRect(x: imageView.right()-30, y: 10, width: 40, height: 20)
  29. tipLabel.layer.cornerRadius = 5
  30. tipLabel.layer.masksToBounds = true
  31. tipLabel.backgroundColor = .red
  32. tipLabel.textColor = .white
  33. tipLabel.font = UIFont.systemFont(ofSize: 14)
  34. tipLabel.textAlignment = .center
  35. self.addSubview(tipLabel)
  36. titleLabel.frame = CGRect(x: 0, y: width-25, width: width, height: 20)
  37. titleLabel.textAlignment = .center
  38. self.addSubview(titleLabel)
  39. titleLabel.backgroundColor = .white
  40. btn.frame = CGRect(x: 0, y: 0, width: Int((kScreenWidth-40)/3), height: Int((kScreenWidth-40)/3))
  41. self.addSubview(btn)
  42. }
  43. /*
  44. // Only override draw() if you perform custom drawing.
  45. // An empty implementation adversely affects performance during animation.
  46. override func draw(_ rect: CGRect) {
  47. // Drawing code
  48. }
  49. */
  50. }