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
32
33
34
35
36
37
38
39
40
41
42
43
44
//
// GMSimpleCell.m
// Gengmei
//
// Created by Thierry on 1/7/15.
// Copyright (c) 2015 Wanmeichuangyi. All rights reserved.
//
#import "GMCollectionViewCell.h"
#import "GMFont.h"
#import <Constant.h>
#import <UIColor+GMTheme.h>
#define CELL_HEIGHT self.contentView.frame.size.height
#define CELL_WIDTH self.contentView.frame.size.width
@implementation GMCollectionViewCell
- (id)initWithFrame:(CGRect)frame
{
self = [super initWithFrame:frame];
if (self) {
[self setup];
}
return self;
}
- (void)awakeFromNib{
[super awakeFromNib];
[self setup];
}
- (void)setup{
self.clipsToBounds = YES;
}
@end
@implementation UICollectionReusableView (Reusable)
+ (NSString *)defaultReuseIdentifier {
return NSStringFromClass(self.class);
}
@end