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.
20 lines
624 B
20 lines
624 B
// |
|
// WatchFunctionCell.h |
|
// tongxin |
|
// |
|
// Created by WeiChaoZheng on 2018/10/13. |
|
// Copyright © 2018年 xTT. All rights reserved. |
|
// |
|
|
|
#import <UIKit/UIKit.h> |
|
|
|
@interface WatchFunctionCell: UICollectionViewCell |
|
|
|
@property (weak, nonatomic) IBOutlet UIImageView *watchFunctionImgView;//功能图片 |
|
|
|
@property (weak, nonatomic) IBOutlet UILabel *watchFunctionCornerMark;//功能图片上的角标 |
|
@property (weak, nonatomic) IBOutlet UILabel *watchFunctionLabel;//功能名字 |
|
@property (weak, nonatomic) IBOutlet NSLayoutConstraint *heightNSLC; |
|
@property (weak, nonatomic) IBOutlet NSLayoutConstraint *widthNSLC; |
|
|
|
@end
|
|
|