I have added a UIButton in a table view. Now when I click a particular button, I need to get the details of the object corresponding to that row.
UIButton
No not really. The click event is
-(IBAction) fnc:(id)sender;
If you want to call another method you will need to do so in a function of that form.
-(IBAction) fnc:(id) sender { UIButton *b = (UIButton*) sender; [self otherFnc:b arg:arg1 arg2:arg2]; }