You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
644 B
24 lines
644 B
// |
|
// 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
|
|
|