Hello I have a applications set up like the Luxor app on the app store. I have three tableviews that a user can scroll through the toolbar to the desired one they wish.
One table is set up on interface builder and the other two I made custom data sources and delegates within NSO object files. So I have a Settings View Controller (where one table is set up in interface builder and the other two tables call their data source and delegates) and then a CustomDataSource.h/.m
and TwoCustomDataSource.h/m
I am trying to get the didSelectRowAtIndexPath methods to work on the custom data source files. I am having trouble with this line of code
It tells me that the the property navigationController is not there. I have the same code used on the settingsTableViewController though.
I tried to make my own navigation controller and do something like
[navController] pushviewController etc and it complies but when i click on the cell of the table view, nothing happens..
Please help me out Thanks!
One table is set up on interface builder and the other two I made custom data sources and delegates within NSO object files. So I have a Settings View Controller (where one table is set up in interface builder and the other two tables call their data source and delegates) and then a CustomDataSource.h/.m
and TwoCustomDataSource.h/m
I am trying to get the didSelectRowAtIndexPath methods to work on the custom data source files. I am having trouble with this line of code
Code:
[[self navigationController] pushViewController:viewController
animated:YES];
It tells me that the the property navigationController is not there. I have the same code used on the settingsTableViewController though.
I tried to make my own navigation controller and do something like
[navController] pushviewController etc and it complies but when i click on the cell of the table view, nothing happens..
Please help me out Thanks!