NSString *copyStringverse = [[NSString alloc] initWithFormat:@"%@",[textview.text]];
UIPasteboard *pb = [UIPasteboard generalPasteboard];
[pb setString:copyStringverse];
I'm using above code for copying contents in textview
, but I want to copy contents in a cell of the table. How to do this?