1234567891011121314151617181920 |
- //
- // StudyCollectionReusableView.swift
- // xingchuangke
- //
- // Created by Virgil on 2019/3/25.
- // Copyright © 2019 Virgil. All rights reserved.
- //
- import UIKit
- class StudyCollectionReusableView: UICollectionReusableView {
- @IBOutlet weak var lblTitle: UILabel!
- @IBOutlet weak var lblLine: UILabel!
- override func awakeFromNib() {
- super.awakeFromNib()
- // Initialization code
- }
- }
|