I have an App which need to select content info in a webview, then popup a menu for more action, and this is all done using h5, in iOS, I have hide the menu using below code:
- (BOOL)canPerformAction:(SEL)action withSender:(id)sender {
return NO;
}
Everything went well below iOS16, when iOS upgraded to iOS16, a system menu called "search website" shows above the h5 menu, does anyone knows how to hide the "search website"?