33 lines
667 B
Objective-C
33 lines
667 B
Objective-C
//
|
|
// BaoGaoViewSecondCell.m
|
|
// Ifish
|
|
//
|
|
// Created by imac on 16/8/29.
|
|
// Copyright © 2016年 lianxiang. All rights reserved.
|
|
//
|
|
|
|
#import "BaoGaoViewSecondCell.h"
|
|
|
|
@implementation BaoGaoViewSecondCell
|
|
|
|
- (void)awakeFromNib {
|
|
[super awakeFromNib];
|
|
// Initialization code
|
|
|
|
self.baoGaoBackView.layer.masksToBounds = YES;
|
|
self.baoGaoBackView.layer.cornerRadius = 5;
|
|
|
|
self.pingFenBtn.layer.masksToBounds = YES;
|
|
self.pingFenBtn.layer.cornerRadius =5;
|
|
|
|
|
|
}
|
|
|
|
- (void)setSelected:(BOOL)selected animated:(BOOL)animated {
|
|
[super setSelected:selected animated:animated];
|
|
|
|
// Configure the view for the selected state
|
|
}
|
|
|
|
@end
|