Add Triggered Segues to User Controller as SplitViewContoller

Tell me please! How can I add Triggered Segues to my custom controller class as SplitViewController? this will be visible in the Builder interface.

[ example in SplitViewController [1]

I tried both

#import <UIKit/UIKit.h> IB_DESIGNABLE @interface SegueViewController : UIViewController @property (nonatomic) IBInspectable UIStoryboardSegue *master1; @property (nonatomic) IBOutlet UIStoryboardSegue *master2; //@property (nonatomic) IBAction UIStoryboardSegue *master3; // error @end 

but it failed

enter image description here

+5
source share

Source: https://habr.com/ru/post/1235565/


All Articles