ios-unity/Classes_cocos/ToastManager.h
2023-02-10 15:13:26 +08:00

18 lines
321 B
Objective-C

//
// ToastManager.h
// Unity-iPhone
//
// Created by zhl on 2022/12/7.
//
#import <Foundation/Foundation.h>
NS_ASSUME_NONNULL_BEGIN
@interface ToastManager : NSObject
+ (void)showToastWithMessage:(NSString*)message;
+ (void)showToastWithImage:(NSString*)message image:(UIImage *)image;
@end
NS_ASSUME_NONNULL_END