gkotick / tip-calculator

0 stars 0 forks source link

FBU iOS: Project 1 - Tip-Calculator - Please Review #1

Open gkotick opened 8 years ago

gkotick commented 8 years ago

My app is complete, please review. /cc @codepathreview @codepath

sumade commented 8 years ago

Good work. The reason you had trouble navigating between screens is because you created a segue from the settings view controller to the main view controller. We'll talk about navigation controllers next week, but the gist is that a "push segue" will push the next screen onto the navigation stack. So in your case, a "push segue" pushes from the tip screen to the settings screen. This will automatically create a back button that will take you back down the navigation stack, that is, it will pop the settings view controller from the navigation stack and return you to the tip navigation screen. Check our guides for more details.

This prework is a preview of our weekly project process. Generally, weekly projects take between 5-10 hours to complete the required features and an additional 5-10 hours to complete the optional features. In general, we've seen that the more hours you log, the quicker you improve your proficiency with iOS. In particular, the optional extensions on each project are often the most valuable learnings since they dive deeper into common iOS use cases. We'll also be providing light code feedback for each submitted project once the program begins.

The purpose of this project was to begin to explore Xcode and to get a broad overview of iOS development using Swift. For example, in this project, we explored the following concepts: