Skip to content

Latest commit

 

History

History
41 lines (20 loc) · 1.69 KB

README.md

File metadata and controls

41 lines (20 loc) · 1.69 KB

Day 58: Project 15: Animation, Part Two

Follow along at https://www.hackingwithswift.com/100/58.

📒 Field Notes

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.

🥅 Challenges

Challenge 1

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.

Challenge 2

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.

Challenge 3

Go back to project 2 and make the flags scale down with a little bounce when pressed.

🔗 Additional/Related Links