12345678910111213141516171819202122232425 |
- //
- // WorkFLowCell.h
- // smartRhino
- //
- // Created by tederen on 2019/11/1.
- // Copyright © 2019 tederen. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @class WorkFLowModel;
- @interface WorkFLowCell : UICollectionViewCell
- @property (weak, nonatomic) IBOutlet UIImageView *iconImageView;
- @property (weak, nonatomic) IBOutlet UILabel *titleLabel;
- @property (weak, nonatomic) IBOutlet UILabel *workNumberLab;
- @property (weak, nonatomic) IBOutlet UIView *topLine;
- @property (weak, nonatomic) IBOutlet UIView *bottomLine;
- @property (weak, nonatomic) IBOutlet UIView *leftLine;
- @property (weak, nonatomic) IBOutlet UIView *rightLine;
- @property (weak, nonatomic) IBOutlet NSLayoutConstraint *width;
- @end
- NS_ASSUME_NONNULL_END
|