XFBanner.swift 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. //
  2. // XFBanner.swift
  3. // tttest
  4. //
  5. // Created by uen on 2020/7/27.
  6. // Copyright © 2020 xiaofei. All rights reserved.
  7. //
  8. import Foundation
  9. import UIKit
  10. class XFBanner: UIView, UIScrollViewDelegate {
  11. // 重写setter方法
  12. var viewArr: NSArray? {
  13. didSet {
  14. // 处理逻辑
  15. setupView()
  16. }
  17. }
  18. lazy var pageControl: UIPageControl = {
  19. let pageV = UIPageControl.init()
  20. pageV.currentPage = 0
  21. pageV.currentPageIndicatorTintColor = UIColor.red
  22. pageV.pageIndicatorTintColor = UIColor.lightGray
  23. return pageV
  24. }()
  25. func setupView() {
  26. print(viewArr!)
  27. for i in 0 ..< viewArr!.count {
  28. let view: CommonDataView = viewArr![i] as! CommonDataView
  29. scrollView.addSubview(view)
  30. view.frame = CGRect(x: self.frame.width * CGFloat(i), y: 0, width: self.frame.width, height: self.frame.height)
  31. }
  32. scrollView.contentSize = CGSize(width: self.frame.width * CGFloat(viewArr!.count), height: self.frame.height)
  33. let w = self.frame.width
  34. let h = self.frame.height
  35. pageControl.frame = CGRect.init(x: (w - 80)/2, y: h - 40, width: 80, height: 40)
  36. self.addSubview(pageControl)
  37. pageControl.numberOfPages = viewArr!.count
  38. }
  39. lazy var scrollView: UIScrollView = {
  40. let scrol = UIScrollView.init()
  41. scrol.frame = self.bounds
  42. scrol.delegate = self
  43. scrol.isPagingEnabled = true
  44. scrol.bounces = false
  45. scrol.showsVerticalScrollIndicator = false
  46. scrol.showsHorizontalScrollIndicator = false
  47. return scrol
  48. }()
  49. // MARK: - delegate
  50. func scrollViewDidScroll(_ scrollView: UIScrollView) {
  51. self.pageControl.currentPage = Int(scrollView.contentOffset.x / self.frame.width)
  52. }
  53. override init(frame: CGRect) {
  54. super.init(frame: frame)
  55. self.addSubview(scrollView)
  56. }
  57. required init?(coder: NSCoder) {
  58. fatalError("init(coder:) has not been implemented")
  59. }
  60. }