背景描述
发现toast不能正常显示在iOS项目中。
vue的代码如下
<template>
<list>
<cell @click="cellClicked(0)">
<text>点我有弹框</text>
</cell>
</list>
</template>
<script>
const { toast } = require('./util.js');
const navigator = weex.requireModule('navigator');
export default {
methods: {
cellClicked() {
const modal = weex.requireModule('modal');
modal.toast({
message: '123120----3123',
duration: 1,
});
}
}
}
</script>
编译后的js在playground
里面可以弹出toast
,但在我的项目中却不行。
我的环境
weexSDK: 0.18.0
$ weex -v
v1.1.0-beta.7
- weexpack : v0.4.7-beta.26
- weex-builder : v0.2.13-beta.4
- weex-devtool : v0.3.2-beta.11
- weex-previewer : v1.3.13-beta.10
解决方法
查找资料,根据老仓库中的issue下提供的解决方案:
- (void)toast:(NSString *)message duration:(double)duration
{
WXAssertMainThread();
// UIView *superView = [[[UIApplication sharedApplication] windows] objectAtIndex:0];
// 将上行的代码该为下行就好了。
UIView *superView = [[[UIApplication sharedApplication] windows] lastObject];
if (!superView) {
superView = self.weexInstance.rootView;
}
UIView *toastView = [self toastViewForMessage:message superView:superView];
WXToastInfo *info = [WXToastInfo new];
info.toastView = toastView;
info.superView = superView;
info.duration = duration;
[[WXToastManager sharedManager].toastQueue addObject:info];
if (![WXToastManager sharedManager].toastingView) {
[self showToast:toastView superView:superView duration:duration];
}
}
经过上面的修改后,发现toast就可以正常显示了。
疑问
我下载了0.18版本的playground
,里面用的toast方法,获取的superView
就是UIView *superView = [[[UIApplication sharedApplication] windows] objectAtIndex:0];
。 为什么同样的代码,在我的项目中就不能弹出,在playground就能弹出呢?
可以参考这条解决方案