我不确定这是否会帮助 IOS 用户,但我可以告诉你我是如何在 Android 中为我的应用程序修复这个问题的,以防其他人遇到这个错误(也许有人可以将此修复程序翻译为 IOS)。
在 FaceBookSDK 中,我修改了 com/facebook/widget/WebDialog.java,这样一旦加载了 Web 对话框,它就会查找“当前目标”块并将其隐藏(如果存在)。
在 com/facebook/widget/WebDialog.java 中:
private class DialogWebViewClient extends WebViewClient {
// ... other methods ...
@Override
public void onPageFinished(WebView view, String url) {
super.onPageFinished(view, url);
if (!isDetached) {
spinner.dismiss();
}
/*
* Once web view is fully loaded, set the contentFrameLayout background to be transparent
* and make visible the 'x' image.
*/
contentFrameLayout.setBackgroundColor(Color.TRANSPARENT);
webView.setVisibility(View.VISIBLE);
crossImageView.setVisibility(View.VISIBLE);
// I don't know how to highlight in the code block
// So I just add this extra long comment to make it obvious
// Add a javascript call to hide that element, if it exists
webView.loadUrl("javascript:try{ document.getElementById('nux-missions-bar').style.display='none'; } catch (e) {}");
// End changes
}