// // GMSimpleCell.m // Gengmei // // Created by Thierry on 1/7/15. // Copyright (c) 2015 Wanmeichuangyi. All rights reserved. // #import "GMCollectionViewCell.h" #import "GMFont.h" #import #import #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