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
Post a Comment