I have a custom cell (with 3 fields) in a tableview… how do I retrieve the values in each of the fields in the custom cell?
Share
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.
Generally speaking you want to expose the cell fields as properties (ex: FirstNameField). Whether you are using MonoTouch.Dialog or UITableView directly, you can cast the UITableViewCell to whatever derived class you have created. Then you can access the properties of your custom cell.