21 lines
315 B
Objective-C
21 lines
315 B
Objective-C
//
|
|
// ToastUtil.h
|
|
// BabyAlbum
|
|
//
|
|
// Created by mambaxie on 2021/7/3.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import <Toast/Toast.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface ToastUtil : NSObject
|
|
|
|
+ (void)showToast:(NSString *)msg;
|
|
+ (void)showToast:(NSString *)msg position:(id)position;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|