2
0

TYHWaterMark.h 387 B

1234567891011121314151617181920
  1. //
  2. // TYHWaterMark.h
  3. //
  4. // Created by yuhua Tang on 2022/8/5.
  5. //
  6. #import <UIKit/UIKit.h>
  7. NS_ASSUME_NONNULL_BEGIN
  8. @interface TYHWaterMarkView : UIView
  9. + (void)setCharacter:(NSString *)str;
  10. + (void)setTimeFormat:(NSString *)format;
  11. + (void)setFont:(UIFont *)font;
  12. + (void)setColor:(UIColor *)color;
  13. + (void)updateDate;
  14. + (void)autoUpdateDate:(BOOL)enable;
  15. @end
  16. NS_ASSUME_NONNULL_END