iOS:When set doriccontext's vc,toast will show on it

This commit is contained in:
pengfei.zhou
2020-04-26 11:21:19 +08:00
committed by osborn
parent f009499745
commit 391060f72e
3 changed files with 35 additions and 1 deletions

View File

@@ -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);
}
});
}