// // WatchFunctionCell.m // tongxin // // Created by WeiChaoZheng on 2018/10/13. // Copyright © 2018年 xTT. All rights reserved. // #import "WatchFunctionCell.h" @implementation WatchFunctionCell -(void)awakeFromNib{ [super awakeFromNib]; self.watchFunctionCornerMark.layer.cornerRadius = 21/2; self.watchFunctionCornerMark.layer.masksToBounds = YES; self.watchFunctionCornerMark.font = DefineFontSize; self.watchFunctionLabel.font = DefineFontSize; //默认是隐藏的 [self.watchFunctionCornerMark setHidden:YES]; self.watchFunctionImgView.contentMode = UIViewContentModeScaleAspectFit; } @end