20

What is a Manual and Non-Adaptive Manual Segue, and the difference between them? Any explanation in detail will be helpful.

Case 1

enter image description hereenter image description here

Case 2

enter image description hereenter image description here

aheze
  • 24,434
  • 8
  • 68
  • 125
tryKuldeepTanwar
  • 3,490
  • 2
  • 19
  • 49
  • https://developer.apple.com/library/ios/recipes/xcode_help-IB_storyboard/Chapters/StoryboardSegue.html – Wojtek Dmyszewicz Jul 11 '16 at 09:03
  • 5
    please stop spamming questions and answers randomly with links to this question. you've already added a bounty. if someone can help they will – Wain Jul 11 '16 at 09:07
  • 1
    This question is a duplicate of [What's the difference between all the Selection Segues?](http://stackoverflow.com/q/25966215/2415822). I can't vote to close it because of the bounty attached, and a mod flag will be declined since the bounty only has 3 days left. – JAL Jul 15 '16 at 14:04
  • 1
    I'm not asking about about selection segue i asked about what is Manual and Non-adaptive Manual segue. @JAL – tryKuldeepTanwar Jul 16 '16 at 03:11

1 Answers1

15

The non-adaptive manual segues are deprecated and they don't adapt to the screen size and orientation, that's why they are called "non-adaptive".

With iOS 8, the size classes were introduced (Regular and Compact) and the new Adaptive Segues adapt to these, like when you turn your iPhone to landscape orientation, the status bar will disappear and the navbar will shorten in height.

Adaptive UI in iOS 8: Explained - iMore

What's the difference between all the Selection Segues?

Community
  • 1
  • 1
sergeng
  • 736
  • 4
  • 10