Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to use a specific cell with a disclosure indicator to bring up a UIImagePicker (the other cells have UITextFields, etc…) So far I have only been able to do it with a UIButton. I want to connect my action to the cell, but my only options are to create new segues. How would I do this?

share|improve this question
Why don't you just use didSelectRowAtIndexPath: ? – MCKapur Nov 22 '12 at 0:56
@LuisOscar , Please let me know how it gets increased? Even for me its too less. – Anoop Vaidya Nov 22 '12 at 3:51
I did not realize that it was appropriate to mark answers correct. Thanks (I marked the right answers on most of my questions) – Andrew Nov 22 '12 at 3:51

2 Answers

up vote 1 down vote accepted

If you know the index path of the cell you want to be tappable (its the first cell in the list or something). Then you could use:

-(void) tableview:(UITableView *)tableview didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
    if (indexPath.section == 0 && indexPath.row == 0) {
        // do some action
        [tableview deslectRowAtIndexPath:indexPath];
        [self someAction];
    }
}

You are also going to want to set all the other cells in your cellForRowAtIndexPath to not respond to tap events.

share|improve this answer
How would I make other cells not respond to touch events? Also, my cell is the first one in the second section, so would the section == 1 and row == 0? – Andrew Nov 23 '12 at 21:07
I know there is a way to disable touch events on a view, I don't know how to do that for cells though – atreat Nov 26 '12 at 18:46
-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:  (NSIndexPath *)indexPath
{
   static NSString *identifier = @"identifier";
   YourCell *cell = [tableView dequeueReusableCellWithIdentifier:identifier];
   if(!cell)
   {
       cell = /*Create your cell*/
       [cell.button addTarget:self action:@selector(didClickButton:)   forControlEvents:UIControlEventTouchUpInside];
   }

   cell.button.tag = [indexPath row];   

   return cell;
}

-(void)didClickButton:(UIButton *)button
{
    int row = button.tag
    /*Here you'll be able to know the button of which row has been clicked.*/
} 
share|improve this answer
I pretty much did the whole view in interface builder so I didn't want to complicate it by adding a cellForRowAtIndexPath method. – Andrew Nov 23 '12 at 21:42

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.