al
Aeline
2021-03-08 ce4eaddf9eb835f01e6bf5845a063d306f322b24
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
//
//  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