I'm trying to save the text selected in my app webView into a String. how is it even possible? As far as I've checked apple don't let you add options to their (copy, cut) pop up menu. I've seen some menu pop ups in github but they are only menus and you cannot select any text from the webView. Plus, I don't want to grab the whole text(or body), just the selected text that the user choose. any suggestion?
EDIT: I do control the webView, my app is RSS kind of app and theres an inner webView which you can see the article. I'm using stringByEvaluatingJava.. to get the document title like this
NSString *title = [webView stringByEvaluatingJavaScriptFromString:@"document.title"];
however, I don't know how to grab the content when the user select the text.