var cell = collectionView.dequeueReusableCellWithReuseIdentifier("RecentlyTimerCollectionViewCell", forIndexPath: indexPath) as! RecentlyTimerCollectionViewCell
var timer = recently[indexPath.row]
cell.timer = timer
if currentTimer.equalTo(timer) {
cell.selected = true
}
return cell






网友评论