i have tableview with custom cell.the table is divided in many section and rows.i have a custom button on cell. now i want to get section number and row number when i click on that button.?
any idea regarding this
i have tableview with custom cell.the table is divided in many section and rows.i
Share
You’ll need to implement a UIControl event-handling method on your view controller, and set that as the handler for all your buttons. i.e. inside your
-tableView:cellForRowAtIndexPath:function you would do something like:Then your event handler would look like this: