RT, in WebView under OSX (not iOS), when loading an html web page, the js window.showModalDialog is invalid and the window cannot pop up. When loading the same web page in Safari, there is a response. Has anyone done something similar? Problem?
The code is as follows:
- (WebView *)webView:(WebView *)sender createWebViewWithRequest:(NSURLRequest *)request{
NSWindow *window = [[NSWindow alloc] initWithContentRect:NSMakeRect(0, 0, 400, 300) styleMask:NSTitledWindowMask | NSClosableWindowMask | NSMiniaturizableWindowMask | NSResizableWindowMask backing:NSBackingStoreBuffered defer:YES];
[window setCollectionBehavior:NSWindowCollectionBehaviorFullScreenPrimary];
WebView *webView = [[WebView alloc] init];
[webView setFrameLoadDelegate:self];
window.contentView = webView;
[webView.mainFrame loadRequest:request];
[window makeKeyAndOrderFront:self];
return webView;
}
- (WebView *)webView:(WebView *)sender createWebViewModalDialogWithRequest:(NSURLRequest *)request{
return [self webView:sender createWebViewWithRequest:request];
}
- (void)webViewRunModal:(WebView *)sender{
[sender.window makeKeyAndOrderFront:self];
}
- (void)webViewShow:(WebView *)sender{
[sender.window makeKeyAndOrderFront:self];
}
- (void)webViewClose:(WebView *)sender{
[sender.window close];
}
It is best not to use showModalDialog. It is better to change it to p. I have never used the osx webview, but when I was doing Android development before, the webview did not support the pop-up of the modal window. It is better to change it to p. I don’t know about osx. Is this the reason why webview does not pop up
After debugging for a long time, I finally solved it. Please provide the code to give others an idea.