Skip to content

Instantly share code, notes, and snippets.

@piaoapiao
Created July 12, 2012 03:13
Show Gist options
  • Save piaoapiao/3095442 to your computer and use it in GitHub Desktop.
Save piaoapiao/3095442 to your computer and use it in GitHub Desktop.
获取选中文字
uitextview
NSRange range = [txtView selectedRange];
NSString *str = [txtView.text substringWithRange:range];
uiwebview
NSString *selection = [_pLongPressTextView stringByEvaluatingJavaScriptFromString:@"window.getSelection().toString()"];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment