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
|
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
Then your event handler would look like this:
|
|||
|
A few thoughts: You can iterate through the button's superview hierarchy until you find a UITableViewCell, then call - (NSIndexPath *)indexPathForCell:(UITableViewCell *)cell on the UITableView.
You can alternately use the tag of the button to store an index referencing the row. This only holds a single integer, so it makes the most sense when you have a single section, or when you are managing your rows as a flat list. You can alternately subclass UITableViewCell to encapsulate the button. Your UITableViewCell could respond to the button events and rebroadcast an event to its own delegate, passing self. The event delegate can then call - (NSIndexPath *)indexPathForCell:(UITableViewCell *)cell on the UITableView to get the index path. |
|||
|
|
|
The following method is called when you select a cell in your tableView:
to access the section number: to access the row number (within the correct section): |
|||||
|
|
The UITableView can convert a CGPoint coordinate into an indexPath:
|
|||
|
|
|
Add can instance variable of your UITableViewCell subclassTo store the index path of the cell:
When you create the cell in:
pass in the indexpath to the newly created/recycled cell. Now when you press the button, just read the indexpath from the ivar of your cell. |
|||
|
|