//
|
// NoticeViewView.swift
|
// ExhibitionProject
|
//
|
// Created by alvin_y on 2019/1/24.
|
// Copyright © 2019 yang-wang. All rights reserved.
|
//
|
|
import UIKit
|
|
class NoticeViewView: GYNoticeViewCell {
|
|
@IBOutlet weak var lb_content: UILabel!
|
|
override func awakeFromNib() {
|
super.awakeFromNib()
|
}
|
|
func onReuse(title: String) {
|
lb_content.text = "\(title)"
|
}
|
|
}
|