// // KBCollectionMainReusableView.m // YouHuiProject // // Created by 小花 on 2018/5/7. // Copyright © 2018年 kuxuan. All rights reserved. // #import "KBCollectionMainReusableView.h" @implementation KBCollectionMainReusableView - (instancetype)initWithFrame:(CGRect)frame { self = [super initWithFrame:frame]; if (self) { [self initSubView]; } return self; } - (void)initSubView { UIImageView *imageView = [[UIImageView alloc] initWithFrame:CGRectMake(0, 0, 170, 14)]; imageView.image = [UIImage imageNamed:@"youLikeIcon"]; imageView.contentMode = UIViewContentModeScaleAspectFit; imageView.center = CGPointMake(self.width/2, self.height/2); [self addSubview:imageView]; } @end