I have a UITableView with many cells and all the cells are going into one xib view, i have 2 buttons in that xib view - Up, Down. What i want to do is to jump to the next/back cell content when pressing one of these buttons, the content view need to change, like Mail.app, Reeder app etc...
this is what i tried to do but it didn't work:
NSIndexPath *currentPath = [tipsGuideViewTv indexPathForSelectedRow];
NSIndexPath *nextPath = [NSIndexPath indexPathForRow:indexVariable.row+1 inSection:indexVariable.section];
[self.navigationController popToViewController:nextPath animated:YES];
I search the web for solution but i didn't find exactly what i mean. Someone know how to made it?
Thanks.