What is a deprecated push segue? (iOS 8) [duplicate] What is a deprecated push segue? (iOS 8) [duplicate] xcode xcode

What is a deprecated push segue? (iOS 8) [duplicate]


The word 'deprecated' means the function is removed and will be no longer available in future ios versions from the point at which it was deprecated . If u continue to use this deprecated functions, then the apps may begin to crash at that function in respective ios versions.

'Push deprecated ' means the storyboard supports 'PUSH SEGUE' no more in ios8 in XCode6. Use 'SHOW' instead of 'PUSH'.

You can see the same issue here in this question:

Adaptive segue in storyboard Xcode 6. Is push deprecated?


Deprecated means that the method you are using will not exist in future versions of iOS, so you are being warned that at some point it will be taken away.

Deprecation

If you build your app and continue to use this code, when Apple release an update you might find your app crashes.

It basically is telling you that the functionality you are using will work for now, but if you want it to work in the future you should not be using it.