123456789101112131415161718192021 |
- //
- // ASSignDayView.h
- // Asteria
- //
- // Created by iOS on 2023/5/16.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface ASSignDayView : UIView
- @property (nonatomic, strong) UILabel *dayLb;
- @property (nonatomic, strong) UIImageView *statusImgV;
- - (void)setDay:(NSInteger)day st:(NSInteger)isSgin;
- @end
- NS_ASSUME_NONNULL_END
|