Stickerbox
Stickerbox

Reputation: 141

Remove UIWebView selection highlight?

So in a UIWebView, whenever you press anything, a grey selection box appears. Like this:

enter image description here

I know you can remove it if you have access to the source code of the website, but obviously in this example I'm using YouTube, which I cannot access. Can I remove the grey highlight within Xcode?

Many thanks!

Upvotes: 1

Views: 860

Answers (1)

user529758
user529758

Reputation:

Why not use JavaScript-injection?

[webView stringByEvaluatingJavaScriptFromString:
    @"document.body.style.setProperty(\"-webkit-tap-highlight-color\", \"rgba(0,0,0,0)\");"
];

Upvotes: 4

Related Questions