ios - With a storyboard do i have to use Segues? -
might stupid question want confirm it:
lets i'm using tableview present viewcontroller, while i'm having storyboard segue pushes viewcontroller navigationcontroller stack.
i know need use
prepareforsegue
method. mean if ill use methods
didselectrowatindexpath
wont same results? tried , view controller presented view seems messed up.
so wanted confirm it.. ?
cheers.
you don't need use segues. can still create view controllers in code completely, or nib files, or storyboard without segue (instantiateviewcontrollerwithidentifier:
).
also, segue have connected view controller isn't automatically triggered , execute in code (performseguewithidentifier:sender:
).
none of should have effect on layout of view contents.
Comments
Post a Comment