1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
| //
| // CellHead.m
| // BuWanVideo2.0
| //
| // Created by weikou2016 on 16/8/17.
| // Copyright © 2016年 com.yeshi.buwansheque.ios. All rights reserved.
| //
|
| #import "CellHead.h"
|
| @implementation CellHead
|
| +(instancetype)getCellHead:(CGRect)frame{
| NSArray *arr = [[NSBundle mainBundle]loadNibNamed:@"CellHead" owner:self options:nil];
| CellHead * cell = arr[0];
| cell.frame = frame;
| cell.backgroundColor = kGlobalBackgroundColor;
| return cell;
| }
|
| @end
|
|