I am developing a application where i implemented a table view controller. Each row of the cell is of type accessory discloser indicator. Now i need to go to different table views by tapping different cells.
I hope i should use didSelectRowAtIndexPath: method to do this. But it acts good for navigating to only one view. How can i navigate for different views by tapping different cells. Any help regarding this is really appreciable.
Thanks
You can use
.rowproperty ofNSIndexPath.if you want an event for tapping on accessory you can use following method.
And dont forget to bind
dataSourceanddelegateproperties of the tableview.For more info you can see document here.
HTH.