//
|
// searchTableViewCell.m
|
// BuWanVideo2.0
|
//
|
// Created by weikou on 16/8/18.
|
// Copyright © 2016年 com.yeshi.buwansheque.ios. All rights reserved.
|
//
|
|
#import "searchTableViewCell.h"
|
|
@implementation searchTableViewCell
|
|
- (void)awakeFromNib {
|
[super awakeFromNib];
|
// Initialization code
|
self.imageW.constant=(self.frame.size.height-20)*16/10;
|
self.backgroundColor=kGlobalBackgroundColor;
|
}
|
|
- (instancetype)initWithFrame:(CGRect)frame{
|
self = [super initWithFrame:frame];
|
if (self) {
|
self.imageW.constant=(self.frame.size.height-20)*16/10;
|
self.backgroundColor=kGlobalBackgroundColor;
|
}
|
return self;
|
}
|
- (void)setSelected:(BOOL)selected animated:(BOOL)animated {
|
[super setSelected:selected animated:animated];
|
// Configure the view for the selected state
|
}
|
|
@end
|