i'm currently developing an app in which the user enters a number in an UIText field and I want to store that number and reuse it in another view controller example:
FirstVC <--- the user types the number on an UIText Field
a Button is tapped on the FirstVC to take the user to a SecondVC
SecondVC <-- the number can be called and can be displayed on a label
Can someone explain me how to store the number and then call it and display it later?