ScreeningCollectionViewCell.m 631 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13
//
//  ScreeningCollectionViewCell.m
//  Lighting
//
//  Created by 曹云霄 on 16/6/1.
//  Copyright © 2016年 上海勾芒科技有限公司. All rights reserved.
//

#import "ScreeningCollectionViewCell.h"

@implementation ScreeningCollectionViewCell


勾芒's avatar
勾芒 committed
14 15
- (void)setModel:(SceneListModel *)model
{
曹云霄's avatar
曹云霄 committed
16 17 18
    _model = model;
    [self.sceneImageView sd_setImageWithURL:[NSURL URLWithString:_model.pricure] placeholderImage:REPLACEIMAGE];
    if (_model.isSelectedSate) {
19 20 21 22
        self.layer.borderWidth = 2.0f;
        self.layer.borderColor = kMainBlueColor.CGColor;
    }else
    {
勾芒's avatar
勾芒 committed
23
        self.layer.borderWidth = 0.f;
24
    }
勾芒's avatar
勾芒 committed
25
}
26 27

@end