I am trying to create a mechanism for expanding a list of files / folders. The idea is to show the same file list view controller every time a user selects a folder, and shows a file view detailed controller if he / she selects a file.
So far, I created a segue from the file list view controller to the file view detailed view controller and segue from the file list table view cell to the file list table view controller:

The problem is that as soon as the user deletes the cell, segue is executed. I would like to remove segue from the table view cell and make it from the file list view controller to myself. That way, I could program the correct segue when the user tapped on the cell.
So my question is: is it possible to create a segue from a view controller in itself in Interface Builder?
ios uitableview uiviewcontroller storyboard segue
Jorge Feb 10 '12 at 11:20 2012-02-10 11:20
source share