// // KXKeyWordView.m // CAISHEN // // Created by kuxuan on 2017/12/5. // Copyright © 2017年 kuxuan. All rights reserved. // #import "KXKeyWordView.h" #import "KXKeyWordTool.h" @implementation KXKeyWordView - (instancetype)init { if (self = [super init]) { self.backgroundColor = [UIColor whiteColor]; [self setupUI]; } return self; } - (instancetype)initWithFrame:(CGRect)frame{ if (self = [super initWithFrame:frame]) { self.backgroundColor = [UIColor whiteColor]; [self setupUI]; } return self; } - (void)setupUI { UILabel *keyWord = [[UILabel alloc]initWithFrame:CGRectMake(14, 0, 200, 42)]; keyWord.text = @"热门关键词:"; keyWord.textColor = [UIColor KXColorWithHex:0x9a9a9a]; keyWord.font = FONT_SYS(14); [self addSubview:keyWord]; } - (void)setItemArray:(NSArray *)itemArray { _itemArray = itemArray; for (int i=0; i