27 lines
780 B
Objective-C
27 lines
780 B
Objective-C
//
|
|
// CameraBottomCollectionViewCell.m
|
|
// Ifish
|
|
//
|
|
// Created by imac on 16/11/30.
|
|
// Copyright © 2016年 lianxiang. All rights reserved.
|
|
//
|
|
|
|
#import "CameraBottomCollectionViewCell.h"
|
|
|
|
@implementation CameraBottomCollectionViewCell
|
|
|
|
- (void)awakeFromNib {
|
|
[super awakeFromNib];
|
|
// Initialization code
|
|
|
|
/* UIView *shuLine=[[UIView alloc] initWithFrame:CGRectMake(self.frame.size.width - 1,0, 1, self.frame.size.height)];
|
|
shuLine.backgroundColor = JWUIColorFromRGB(0xdddddd);
|
|
[self addSubview:shuLine];
|
|
|
|
UIView *hengLine=[[UIView alloc] initWithFrame:CGRectMake(0,self.frame.size.height -1,self.frame.size.width, 1)];
|
|
hengLine.backgroundColor = shuLine.backgroundColor = JWUIColorFromRGB(0xdddddd);
|
|
[self addSubview:hengLine];*/
|
|
}
|
|
|
|
@end
|