Follow along at https://www.hackingwithswift.com/100/58.
This day covers the first part of
Project 15: Animation
in Hacking with Swift.I previously created projects alongside Hacking with Swift in a separate repository, and you can find Project 15 here. Even better, though, I copied it over to Day 57's folder so I could extend it for 100 Days of Swift.
With that in mind, Day 58 focuses on extending Project 15's material with a set of challenges.
Go back to project 8 and make the letter group buttons fade out when they are tapped. We were using the isHidden property, but you'll need to switch to alpha because isHidden is either true or false, it has no animatable values between.
- 🔗 Commit
Go back to project 13 and make the image view fade in when a new picture is chosen. To make this work, set the alpha to 0 first.
- 🔗 Commit
Go back to project 2 and make the flags scale down with a little bounce when pressed.
- 🔗 Commit