ASSignDayView.h 343 B

123456789101112131415161718192021
  1. //
  2. // ASSignDayView.h
  3. // Asteria
  4. //
  5. // Created by iOS on 2023/5/16.
  6. //
  7. #import <UIKit/UIKit.h>
  8. NS_ASSUME_NONNULL_BEGIN
  9. @interface ASSignDayView : UIView
  10. @property (nonatomic, strong) UILabel *dayLb;
  11. @property (nonatomic, strong) UIImageView *statusImgV;
  12. - (void)setDay:(NSInteger)day st:(NSInteger)isSgin;
  13. @end
  14. NS_ASSUME_NONNULL_END