NSString *copyStringverse = [[NSString alloc] initWithFormat:@"%@",[textview.text]];
 UIPasteboard *pb = [UIPasteboard generalPasteboard];
 [pb setString:copyStringverse];

I am using above code for copying contents in textview,but I want to copy contents in a cell of the table. How to do this. Thanks in advance.

link|improve this question

69% accept rate
feedback

1 Answer

up vote 0 down vote accepted

Well you don't say exactly how you have your table view cell set up, but if it's just text inside your table view it could be as easy as:

// provided you actually have your table view cell
NSString *copyStringverse = yourSelectedOrClickedTableViewCell.textLabel.text;
UIPasteboard *pb = [UIPasteboard generalPasteboard];
[pb setString:copyStringverse];
link|improve this answer
haii thanks for your reply,what s yourSelectedOrClickedTableViewCell ?table name? – stackiphone Jan 15 at 12:31
@Micheal Dautermann i need to put it inside the butytonclick,so the text label shows eror – stackiphone Jan 15 at 12:32
yourSelectedOrClickedTableViewCell is a UITableViewCell. You have to figure out which cell is being clicked. I don't know what the rest of your code looks like, so I don't know how you would invoke the copying and I couldn't come up with a better code sample. – Michael Dautermann Jan 15 at 12:33
feedback

Your Answer

 
or
required, but never shown

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