I have a custom UITableViewCell, which have a button on it, IB linked to a function called:

- (IBAction)clickUse:(id)sender;

In this function, I planned to pass an object from UITableView's data source ( an object in a NSMutableArray ) to next UIViewController, when the user clicks the button on the UITableViewCell.

I set a property in the custom UITableViewCell, like this:

@property (nonatomic, retain) SomeObject *some_object;

In UITableView's cellForRowAtIndexPath function, I pass the object to the cell:

MyCustomCell *cell = (MyCustomCell *)[tableView dequeueReusableCellWithIdentifier:identifier];
cell.some_object = [self.cellData objectAtIndex:indexPath.row];

At this moment I track the object, it is still here. But in the MyCustomCell cell, the object is gone and assigned to nil. Therefore, the object cannot be passed to next UIViewController.

What did I miss?

link|improve this question

where u r handling clickeUse action either in UITableveiwCell or UIviewcontroller? – vishy Jan 18 at 10:59
in UITableveiwCell. Actually which approach is better? – Shivan Raptor Jan 18 at 14:40
1  
yes, u can provide action in viewcontroller. u can get the index from its tag, and also there will no need to maintain array at both places.. – vishy Jan 18 at 14:51
feedback

1 Answer

up vote 1 down vote accepted

Perhaps it's better to use a different approach. You can give each cell button a tag. The tag value could be the row index path.

Your -tableView:cellForRowAtIndexPath: method could include the following:

MyCustomCell *cell = (MyCustomCell *)[tableView dequeueReusableCellWithIdentifier:identifier];
cell.button.tag = indexPath.row

And your -clickUse: method could look like this:

- (IBAction)clickUse:(id)sender
{
    UIButton *button = (UIButton *)sender;
    SomeObject *object = [self.cellData objectAtIndex:button.tag];

    // do stuff with your object on click
}
link|improve this answer
with this approach, is it a must for the clickUse to be written in UITableView instead of writing it in the custom UITableViewCell class? – Shivan Raptor Jan 18 at 14:42
@Shivan: that is correct. – Wolfgang Schreurs Jan 19 at 1:49
feedback

Your Answer

 
or
required, but never shown

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