Wrap up
Wrap up êŽë š
As your Swift skill increases, I hope you're starting to feel the balance of these projects move away from explaining the basics and toward presenting and dissecting code.
In this project you learned how to download JSON using Swiftâs Data type, then use the Codable protocol to convert that data into Swift objects we defined. Working with JSON is something you're going to be doing time and time again in your Swift career, and you've cracked it in about an hour of work â while also learning about UITabBarController
, UIStoryboard
, and more.
Good job!
Review what you learned
Anyone can sit through a tutorial, but it takes actual work to remember what was taught. Itâs my job to make sure you take as much from these tutorials as possible, so Iâve prepared a short review to help you check your learning.
Challenge
One of the best ways to learn is to write your own code as often as possible, so here are three ways you should try extending this app to make sure you fully understand whatâs going on:
- Add a Credits button to the top-right corner using
UIBarButtonItem
. When this is tapped, show an alert telling users the data comes from the We The People API of the Whitehouse. - Let users filter the petitions they see. This involves creating a second array of filtered items that contains only petitions matching a string the user entered. Use a
UIAlertController
with a text field to let them enter that string. This is a tough one, so Iâve included some hints below if you get stuck. - Experiment with the HTML â this isnât a HTML or CSS tutorial, but you can find lots of resources online to give you enough knowledge to tinker with the layout a little.
Hints
It is vital to your learning that you try the challenges above yourself, and not just for a handful of minutes before you give up.
Every time you try something wrong, you learn that itâs wrong and youâll remember that itâs wrong. By the time you find the correct solution, youâll remember it much more thoroughly, while also remembering a lot of the wrong turns you took.
This is what I mean by âthere is no learning without struggleâ: if something comes easily to you, it can go just as easily. But when you have to really mentally fight for something, it will stick much longer.
But if youâve already worked hard at the challenges above and are still struggling to implement them, Iâm going to write some hints below that should guide you to the correct answer.
If you ignore me and read these hints without having spent at least 30 minutes trying the challenges above, the only person youâre cheating is yourself.
Still here? OK. The second challenge here is to let users filter the petitions they see. To solve this you need to do a number of things:
- Have one property to store all petitions, and one to store filtered petitions. This means the user can filter the petitions several times and you donât have to keep redownloading your JSON.
- At first your filtered petitions array will be the same as the main petitions array, so just assign one to the other when your data is ready.
- Your table view should load all its data from the filtered petitions array.
- Youâll need a bar button item to show an alert controller that the user can type into.
- Once thatâs done, go through all the items in your petitions array, adding any you want to the filtered petition.
The important part here is the last one: how do you decide whether a petition matches the userâs search? One option is to use contains()
to check whether the petition title or body text contains the userâs search string â try it and see how you get on!