Monday, October 19 at 11:59 PM
We've explored quite a bit with iOS development, and learned how to make simple apps. Continuing this trend, we are eventually going to make a full-on iOS Hangman game for our next project. This homework assignment is dealing with some preliminiaries and setting up some of the first steps for creating the Hangman game. Namely, we will be using our new-found UI knowledge to create the View of the game.
- Fork the assignment's repository from (https://github.com/iosdecal).
- Clone your forked repository to your local machine (the URL should contain YOUR_USERNAME/ios-decal-..).
- ** Add to HangmanViewController.swift and Main.Storyboard **
- Add, commit, and push your modified file(s) to your forked remote repository.
- Must have a "New Game" Button
- Must have a "Guess Button
- Must have a Textfield (where user enters letter as guess)
- Must have a UILabel that indicates what guesses have been made.
- Must have an UIImageView that will represent the "state" of the man being hung.
- You must create any necessary constraints for all subviews.