hello world
2015-02-24 本文已影响0人
ruandao
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