12345678910111213141516171819 |
- //
- // customToastVew.h
- // Private-X
- //
- // Created by xd h on 2024/7/18.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface customToastVew : UIView
- + (customToastVew*)makeText:(NSString*)text;
- - (void)show;
- @end
- NS_ASSUME_NONNULL_END
|