customToastVew.h 252 B

12345678910111213141516171819
  1. //
  2. // customToastVew.h
  3. // Private-X
  4. //
  5. // Created by xd h on 2024/7/18.
  6. //
  7. #import <UIKit/UIKit.h>
  8. NS_ASSUME_NONNULL_BEGIN
  9. @interface customToastVew : UIView
  10. + (customToastVew*)makeText:(NSString*)text;
  11. - (void)show;
  12. @end
  13. NS_ASSUME_NONNULL_END