views:

130

answers:

1

Hi Friends,

I need to create a tableView with customized UITableViewCell that has three small buttons in their view. Is there any way by which I can trap the click events of Buttons as well as didSelectRow of TableView and decide what to do?

Please help me.

A: 

connect those buttons to appropriate IBAction outlets in your controller. as a sender you will receive the actual custom Cell you were using.

Reflog
Thank you Reflog. I am doing it programmatically and it worked.
Krishnan