美文网首页
ios webview 使用MBProgressHUD后界面无法

ios webview 使用MBProgressHUD后界面无法

作者: 我想养只猫 | 来源:发表于2017-03-14 10:22 被阅读268次

之前:

- (void)showTextHud:(NSString*)msg {

MBProgressHUD * hud = [MBProgressHUDshowHUDAddedTo:self.view animated:YES];

hud.mode = MBProgressHUDModeText;

hud.label.text = msg;

hud.margin = 10.0f;

hud.removeFromSuperViewOnHide = YES;

[hud hideAnimated:YESafterDelay:1.5];

}

hud消失后发现webview无法点击,而且有时显示位置不正确

修改:MBProgressHUD*hud = [MBProgressHUDshowHUDAddedTo:[UIApplicationsharedApplication].keyWindowanimated:YES];

相关文章

网友评论

      本文标题:ios webview 使用MBProgressHUD后界面无法

      本文链接:https://www.haomeiwen.com/subject/bjmcnttx.html