ios - How to decompose storyboard views into XIBs -


is possible me extract views on storyboard individual .xib files? think having lot of views in storyboard makes confusing , hard view code in 13 inch screen.

thanks.

it's not possible in automatic way, need copy paste views xibs. can instantiate view controllers in storyboard.

something this:

 uistoryboard *sb = [uistoryboard storyboardwithname:                         @"storyboard" bundle:[nsbundle mainbundle]];  uiviewcontroller *vc = [storyboard instantiateviewcontrollerwithidentifier:@"id"]; 

Comments

Popular posts from this blog

java.util.scanner - How to read and add only numbers to array from a text file -

javascript - Backbone.js getting target attribute -

html - Repeat image to extend header to fill screen -