Skip to content

Instantly share code, notes, and snippets.

@rais38
Created July 18, 2014 19:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rais38/6d8f1b49da73e6fab743 to your computer and use it in GitHub Desktop.
Save rais38/6d8f1b49da73e6fab743 to your computer and use it in GitHub Desktop.
UITextViews in a UITableView link detection bug in iOS 7
# http://stackoverflow.com/a/23119866/1379492
- (void)prepareForReuse
{
[super prepareForReuse];
self.textView.editable = YES;
self.textView.editable = NO;
self.textView.text = nil;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment