You can create a delegate for the SweepStakeTableViewCell and assign the SweepViewController to it.
@protocol SweepStakeTableViewCellDelegate <NSObject>
- (void)sweepTableViewCell:(SweepStakeTableViewCell *)cell buttonSelected:(UIButton *)button;
@end
Assign the view controller (in this case self) to the SweepStakeTableViewCell delegate method when creating the cell in the table view delegate method.
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[[SweepStakeTableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease];
}
// Configure the cell...
.
.
.
cell.delegate = self;
return cell;
}
For the SweepStakeTableViewCell
@interface SweepStakeTableViewCell : UITableViewCell
.
.
@property (nonatomic, assign) id<SweepStakeTableViewCellDelegate> delegate;
.
@end
@implementation SweepStakeTableViewCell
.
- (void)buttonTapped:(id)sender
{
if ([delegate respondsToSelector:@selector(sweepTableViewCell:buttonSelected:)])
{
[delegate sweepTableViewCell:self buttonSelected:sender];
}
}
.
@end
When the button is selected in the table view cell, it will call the delegate method which in this case the view controller with the cell and selected button that you can retrieve the values.