iOS:When set doriccontext's vc,toast will show on it
This commit is contained in:
@@ -32,7 +32,11 @@ - (void)toast:(NSDictionary *)dic withPromise:(DoricPromise *)promise {
|
||||
[dic[@"gravity"] also:^(NSNumber *it) {
|
||||
gravity = (DoricGravity) [it integerValue];
|
||||
}];
|
||||
ShowToast(dic[@"msg"], gravity);
|
||||
if (self.doricContext.vc) {
|
||||
ShowToastInVC(self.doricContext.vc, dic[@"msg"], gravity);
|
||||
} else {
|
||||
ShowToast(dic[@"msg"], gravity);
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user