With the iOS 15 update, in my web application is appear a new functionality that I want to disable. This feature is based on a long press and dragging is possible to select some text.
Feature example gif
i've tried to use:
WKWebViewConfiguration* conf = [[WKWebViewConfiguration alloc] init];
WKPreferences *preferences = [[WKPreferences alloc] init];
preferences.textInteractionEnabled = false;
conf.preferences = preferences;
but it disable all interactions with text, text inputs too.
Someone can help me, please?