how can I copy a string displayed in a UITableViewCell into another NSString?
Posted
by dBloc
on Stack Overflow
See other posts from Stack Overflow
or by dBloc
Published on 2010-05-19T18:46:57Z
Indexed on
2010/05/19
18:50 UTC
Read the original article
Hit count: 116
Hey
I am writing a program, and one part of my program has a UItableView in which I set cell contents manually by using the following...
cell.textLabel.text = @"CELL CONTENTS HERE!";
How can I copy a string displayed in a particular TableView Cell into another NSString?
© Stack Overflow or respective owner