I try to merge the two wonderfull tutorials found on this pages: I intend to make an app, with a Tab Bar, where on the first tab I have a TableView.
It is wokring absolutely well. However ...
I want to implement a Detail view, when one of the table element is clicked, and I fail completly. I just followed the tutorial, where the Detail view creation is described, applyed all the codes, etc. However if I click on one of the table element, nothing happens. With debug I see, that the DetailView object is initialised, but when I push the view, nothing happens.
What did I wrong? Or I try to do something against Apple Human Interface Guide, so my approach is wrong?
Many thanks:
Peter.
PS: I can provide a small app source, in the case of need.
PPS: I know it is rude, but I will crosspost this to the Tutorials section too.
I try to merge the two wonderfull tutorials found on this pages: I intend to make an app, with a Tab Bar, where on the first tab I have a TableView.
It is wokring absolutely well. However ...
I want to implement a Detail view, when one of the table element is clicked, and I fail completly. I just followed the tutorial, where the Detail view creation is described, applyed all the codes, etc. However if I click on one of the table element, nothing happens. With debug I see, that the DetailView object is initialised, but when I push the view, nothing happens.
What did I wrong? Or I try to do something against Apple Human Interface Guide, so my approach is wrong?
Many thanks:
Peter.
PS: I can provide a small app source, in the case of need.
PPS: I know it is rude, but I will crosspost this to the Tutorials section too.
Any luck with this? I am tackling a similar implementation. Cheers.
I struggle with the same. I have a TabBarController with several ViewControllers for the TabBar items. One of these controllers is a TableView. A click on one of the cells should open a DetailView. I need no navigation, because this last DetailView is the end point and the user can tap on the TabBarItem to open the TableView again. I tried to set the DetialView's view as new TabBar view and saw the correct DetailView but this disables the TabBar functionality. Inserting as sub view of the TabBar's view isn't working, too. The DetailViewController and it's view are initialized correctly but won't show. Is there a way to add the DetailViewController temporarily to the TabBarController without creating a new TabBarItem? Or any other way to show the DetailView's view?? Thanks!