I want to drag segue from my views manager into myself. Therefore, I can click on "infinite" instances of this particular view controller.
I know how to do this in code (I programmatically program the viewer). However, I want to use segues as far as possible.
I found several βhacksβ for creating a segue for myself in the storyboard, but I don't like hacks, so my question is:
Is there any clean way to make Segui yourself in the storyboard? I donβt want to drag it with a button or such, I just want a general session that I can use with:
[self performSegueWithIdentifier:@"segueIdentifier"]
Thanks.
source share