ios - watchos2 - Can I implement multiple storyboards? -


in ios, instantiate smaller (sub-) storyboards using this:

- (ibaction)showtrains:(id)sender {     uistoryboard *trainstoryboard = [uistoryboard storyboardwithname:@"train" bundle:nil];     uiviewcontroller *maintrainviewcontroller = [trainstoryboard instantiateinitialviewcontroller];     maintrainviewcontroller.modaltransitionstyle = uimodaltransitionstylecrossdissolve;     [self presentviewcontroller:maintrainviewcontroller animated:yes completion: nil];  } 

i understand in xcode 7+, can subdivide watches storyboards. has done this, , how, please...

it's not possible @ moment since storyboard (uistoryboard) part of uikit framework can see it's not available in uikit 3rd party developers on watch now.

there is nothing related storyboards in watchkit framework well.


Comments

Popular posts from this blog

java - Date formats difference between yyyy-MM-dd'T'HH:mm:ss and yyyy-MM-dd'T'HH:mm:ssXXX -

c# - Get rid of xmlns attribute when adding node to existing xml -