ReportDateCollectionViewCell.swift
460 Bytes
//
// ReportDateCollectionViewCell.swift
// ParentAssistant
//
// Created by 葛建军 on 2018/3/9.
// Copyright © 2018年 HANGZHOUTEAM. All rights reserved.
//
import UIKit
class ReportDateCollectionViewCell: UICollectionViewCell {
@IBOutlet var weekLabel: UILabel!
@IBOutlet var dateLabel: UILabel!
func setupWithDate(week:String,date:String){
weekLabel.text = week
dateLabel.text = date
}
}