StudyCollectionReusableView.swift 416 B

1234567891011121314151617181920
  1. //
  2. // StudyCollectionReusableView.swift
  3. // xingchuangke
  4. //
  5. // Created by Virgil on 2019/3/25.
  6. // Copyright © 2019 Virgil. All rights reserved.
  7. //
  8. import UIKit
  9. class StudyCollectionReusableView: UICollectionReusableView {
  10. @IBOutlet weak var lblTitle: UILabel!
  11. @IBOutlet weak var lblLine: UILabel!
  12. override func awakeFromNib() {
  13. super.awakeFromNib()
  14. // Initialization code
  15. }
  16. }