BBSHeaderCollectionReusableView.swift 575 B

12345678910111213141516171819202122232425262728
  1. //
  2. // BBSHeaderCollectionReusableView.swift
  3. // O2Platform
  4. //
  5. // Created by 刘振兴 on 2016/11/4.
  6. // Copyright © 2016年 zoneland. All rights reserved.
  7. //
  8. import UIKit
  9. class BBSHeaderCollectionReusableView: UICollectionReusableView {
  10. @IBOutlet weak var headerIconImageView: UIImageView!
  11. @IBOutlet weak var forumTitleLabel: UILabel!
  12. var bbsForumData:BBSForumListData? {
  13. didSet {
  14. self.forumTitleLabel.text = bbsForumData?.forumName
  15. }
  16. }
  17. override func awakeFromNib() {
  18. }
  19. }