Hi i'm working on a standard Master-Detail Applicaton.
When you create a master-detail application in xcode (i mean the one that it propose when creating a new project), xcode creates a navigation controller, a table view and a detail view, the default behavior when you click the uitableview cell is to go on the detail view. I would like instead to go on another table view (that of course i had already created in the storyboard). My purpose is to show a list of filtered values on the basis of what I clicked (the cell clicked) on the first table view.
So i try to accomplish this from the graphical storyboard, i try to ctrl-drag an arrow from the first-standard table view to the second-new one. Selecting manual segue = show. And I even deleted the "original" arrow that link the first-standard table view to the detail view (the one proposed by xcode).
But when i click on a table view cell in the simulator, the clicked cell becomes gray and nothing happens.
How can I make a second filtered table view appear when I click on a first' table view cell? What should i do to accomplish this?
Ps. i am a very beginner of iOS programming, objective-c and cocoa touch framework. I xcode tag because i would like to know what can be done from within the storyboard (graphically) to accomplish what i need to do.