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.

I am working in UITableView and trying to let the user to select cells using this code

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
    NSInteger row = [indexPath row];
    UITableViewCell *cell = [tableView cellForRowAtIndexPath:indexPath];
    if(cell != nil)
    {
        if(cell.accessoryType == UITableViewCellAccessoryNone)
        {
            cell.accessoryType = UITableViewCellAccessoryCheckmark;
        }
        else
        {
            cell.accessoryType = UITableViewCellAccessoryNone;
        }
    }
}

but the problem is when the cell count over one page if you select cell number 1 the row number 1 in each page will be selected too.

share|improve this question

3 Answers

up vote 7 down vote accepted
static NSString * cellIdentifier = @"CellIdentifier" 

in this place use

NSString *CellIdentifier = [NSString stringWithFormat:@"Cell%i",indexPath.row];
share|improve this answer
Why this second answer? You should edited your first answer instead. – EmptyStack Jun 3 '11 at 8:29
You can delete your first answer. – EmptyStack Jun 3 '11 at 12:43
Thank you! Can you explain why this fixed the problem? – Robert Wagstaff Aug 20 '12 at 13:34

Nice answer, you really helped put me on the right track.

My 2 cents to help somebody else:

I'm using a grouped table so I changed it up a bit to make it:

NSString *CellIdentifier = [NSString stringWithFormat:@"Cell%i-%i", indexPath.section, indexPath.row];

Hope this helps somebody else.

share|improve this answer

use this pass the global variable one class to other class or one view controller to a other view controller.

globalString=[Arrayname objectAtIndex:indexPath.row];

Write this code in tableviewdidselect delegate method.

share|improve this answer

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.