17 lines
242 B
Objective-C
17 lines
242 B
Objective-C
//
|
|
// UIUtils.h
|
|
// Unity-iPhone
|
|
//
|
|
// Created by zhl on 2022/11/25.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface UIUtils : NSObject
|
|
+ (void)showToastWithMessage:(NSString*)message;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|