I am having an issue with my tableviews as I pop one tableview off my navigation controller and then pushing a new one on with similar data for the source. Somehow I am seeing cells from the old tableview. Any ideas?
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.
if these are two different table views you probably want to give them different reuse identifiers, e.g.
for the FirstTable:
UITableViewCell* cell = [tableView dequeueReusableCellWithIdentifier:@”FirstTableViewCell”];
for the SecondTable:
UITableViewCell* cell = [tableView dequeueReusableCellWithIdentifier:@”SecondTableViewCell”];