I’m developing an iPhone app and have a cell object.
UITableViewCell *cell = [myTableView cellForRowAtIndexPath:indexPath];
But how do I GET the text from that cell?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
If it’s a cell that was created with one of the system cell types, it has a
UILabel *member calledtextLabel. If you’ve created a custom cell type, you should set thetagproperty of the relevant view (in IB or in code), then retrieve it using theviewWithTag:method on your cell.