I have added UIButton
in UITableViewCells
. I have when the user clicks the button we have get the indexpath to use the values from NSMutableArray
. I have used the below to get the current IndexPath
,
[getMeButton addTarget:self action:@selector(resendTheErrorMessage:) forControlEvents:UIControlEventTouchUpInside];
-(void) resendTheErrorMessage:(id)sender
{
NSLog(@"SEnder: %@", sender);
//NSLog(@"Index Path : %@", indexpath);
}
Can anyone please help me to pass current indexpath UIButton's
@selector. Thanks in advance.
EDIT:
This is the output I got from NSLog()
<UIButton: 0x864d420; frame = (225 31; 95 16); opaque = NO; tag = 105; layer = <CALayer: 0x864d570>>