Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Iam pretty new to Iphone and this is my last module in my project..The following code working perfectly for multiple country selection with chekmark. Basically my question is how to save those selected countries and show the check marks again when come back to this view. please help me here..

My didSelectRowAtIndexPath method

-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath { UITableViewCell *selectedCell = [tableView cellForRowAtIndexPath:indexPath];

if([selectedCell accessoryType] == UITableViewCellAccessoryNone) {

[selectedCell setAccessoryType:UITableViewCellAccessoryCheckmark];

[selectedIndexes addObject:[NSNumber numberWithInt:indexPath.row]];

}

else {

[selectedCell setAccessoryType:UITableViewCellAccessoryNone];

[selectedIndexes removeObject:[NSNumber numberWithInt:indexPath.row]];

}

[tableView deselectRowAtIndexPath:indexPath animated:NO]; [tableView reloadData];

}

My cellForRowAtIndexPath method

-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {

HolidayAppDelegate *delegatObj = (HolidayAppDelegate *)[UIApplication sharedApplication].delegate;

static NSString *CellIdentifier = @"CustomCell";

UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];

if (cell == nil) {

cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease];

}

cell.textLabel.text=[delegatObj.allcountryarray objectAtIndex:indexPath.row];

[cell setAccessoryType:UITableViewCellAccessoryNone];

for (int i = 0; i < selectedIndexes.count; i++)

{

NSUInteger num = [[selectedIndexes objectAtIndex:i] intValue];

if (num == indexPath.row) {

[cell setAccessoryType:UITableViewCellAccessoryCheckmark];

break;

}

}

return cell;

}

Thanks

share|improve this question
1  
Please any one.. – Malik Jagirdar Jun 20 '11 at 5:32

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.