Using Xcode do I need to create a new file for each view when it is connected to a button? Or does it work fine with just keeping the app under one h and m file?
Sign up to request clarification or add additional context in comments.
Comments
1
iOS app development follow the model-view-control design pattern, and as such, you should always create a new control (.m and .h file) for each new view.