23 lines
405 B
Mathematica
23 lines
405 B
Mathematica
|
|
//
|
||
|
|
// ToastUtil.m
|
||
|
|
// BabyAlbum
|
||
|
|
//
|
||
|
|
// Created by mambaxie on 2021/7/3.
|
||
|
|
//
|
||
|
|
|
||
|
|
#import "ToastUtil.h"
|
||
|
|
|
||
|
|
@implementation ToastUtil
|
||
|
|
|
||
|
|
+ (void)showToast:(NSString *)msg
|
||
|
|
{
|
||
|
|
[self showToast:msg position:CSToastPositionCenter];
|
||
|
|
}
|
||
|
|
|
||
|
|
+ (void)showToast:(NSString *)msg position:(nonnull id)position {
|
||
|
|
|
||
|
|
[UIApplication.sharedApplication.windows.lastObject makeToast:msg duration:1.5 position:position];
|
||
|
|
}
|
||
|
|
|
||
|
|
@end
|