I have several custom UIMenuItems that do things with a selection in a UIWebView. After the action has been run on that selection I want to hide the selection handles just as copy: does.

I have tried using window.getSelection().removeAllRanges(); and that works in that window.getSelection() no longer returns anything but the text selection handles stay visible.

Is there a way to remove the selection and the handles with it?

Edit: I don't need it to be a JS solution but I can't loose the state by reloading the webview.

link|improve this question
Matt - on my phone (and simulator), copy: doesn't hide the selection handles when it's chosen. Does it on yours? Please post your solution if you've found one - I'm working on this too. – TomSwift Oct 29 '10 at 18:34
Tom – hmmm, you are right... Perhaps this is something that is not possible. What I am doing is getting the selection and surrounding it with a new div. What I don't like is that the blue selection handles then show up at the old position of the selected text like an I with two blue dots. The related problem is that if I programmatically change the selection I don't believe the blue text selection box adjusts to that new range. – MattLeff Oct 31 '10 at 14:36
That's the same behavior I've experienced. It seems there's no way to change the selection range from javascript. – TomSwift Oct 31 '10 at 18:03
feedback

2 Answers

up vote 22 down vote accepted
+100

Just disable and re-enable the User Interaction:

myWebView.userInteractionEnabled = NO;
myWebView.userInteractionEnabled = YES;
link|improve this answer
That's simply genius. – TomSwift Nov 14 '10 at 17:00
Brilliant! You earned it! You know you have the right solution when it is so simple...:) – MattLeff Nov 14 '10 at 17:07
Thanks. I love simple solutions to apparently difficult problems :) – Sylter Nov 14 '10 at 18:15
Works for me! Beats all of the Javascript solutions I tried. – Sam Soffes Dec 6 '10 at 18:04
@Sylter - thanks. If only this answer was easier to find on google! – Benjie Gillam Oct 27 '11 at 13:54
show 1 more comment
feedback

you can simply refresh the webview if your data is only text then no body can trace that webview is refreshed

use this code

[webview reload];

i have done this thing in my apps & its work great

link|improve this answer
I can't reload the whole webview as that would change state that is in the webview. I just need to get those handles to disappear. ;) – MattLeff Oct 28 '10 at 19:38
Definitely a work around, but not ideal for most situations. – Sam Soffes Nov 3 '10 at 19:06
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.