I want to create a segue from (a) a UIButton (in a custom cell of a tableview) and (b) a custom cell in general to a UIViewController. The custom cell is specified in a .xib file. I read that I just should control drag from the UIButton / custom cell to the UIViewController. That doesn't work for me.
- The .xib file of the custom cell isn't inside the storyboard - that's right? I thought about that it should be inside the storyboard. If necessary, how can I do that?
- How can I create a segue from the UIButton (in a custom cell) / custom cell to the UIViewController?
Thanks!
EDIT: I'm using a UITableViewController as Source, the destination is a UIViewController with a UITableView.