//
|
// AllSpecialCell.m
|
// BuWanVideo2.0
|
//
|
// Created by weikou2016 on 16/8/22.
|
// Copyright © 2016年 com.yeshi.buwansheque.ios. All rights reserved.
|
//
|
|
#import "AllSpecialCell.h"
|
|
@implementation AllSpecialCell
|
|
- (void)awakeFromNib {
|
[super awakeFromNib];
|
self.backgroundColor=[UIColor whiteColor];
|
//设置图片的高度
|
self.imageheight.constant=KScreenW/16*7;
|
//给专题图片画圆角
|
self.image.layer.masksToBounds=YES;
|
self.image.layer.cornerRadius=5;
|
|
|
}
|
|
- (void)setSelected:(BOOL)selected animated:(BOOL)animated {
|
[super setSelected:selected animated:animated];
|
|
// Configure the view for the selected state
|
}
|
|
@end
|