Assignment 4: URLRequest Data List

Description

In this assignment, you will be creating a single TableViewController application that will make a request to a specific URL https://lenczes.edumedia.ca/mad9137/a4/respond.php. If you want to see the server script, you can download the php file here. It will make the URLRequest when a button is pressed, and it will display the contents of the server data in the cells of the table.

NOTE

You will need to use a CollectionViewController with a custom CollectionViewCell instead of a TableViewController in order to get full marks on this assignment.

Requirements

The tableView will have a navigation controller embedded in it, with a single barButtonItem added to the right side of the bar. This button will be labeled "Load", and will have an action that will be used to make the URL request.

Your TableViewController will display the information from the JSON data returned from the URLRequest. Each cell in the table will display the eventTitle, and eventDate strings in it's labels. There are no additional views or segues in this application.

You TableViewController class will need an array or dictionary objects in the correct format to hold the data returned from the server. The URLRequest will need to call a completion handler which will pass the data to a callback function to process the string of JSON and covert it to an array of objects.

When this URLRequest queries the server, the server script will return a string of JSON data that defines the array of dictionaries, which will look like this:

[
  {"eventTitle":"First Day Of Class","eventDate":"2018\/09\/05"},
  {"eventTitle":"Submit Assignment 1","eventDate":"2018\/10\/01"},
  {"eventTitle":"Submit Assignment 2","eventDate":"2018\/10\/15"},
  {"eventTitle":"Submit Midterm Project","eventDate":"2018\/10\/29"},
  {"eventTitle":"Submit Assignment 3","eventDate":"2018\/11\/12"},
  {"eventTitle":"Submit Assignment 4","eventDate":"2018\/11\/26"},
  {"eventTitle":"Submit Final Project","eventDate":"2018\/12\/13"},
  {"eventTitle":"End Of Semester","eventDate":"2018\/12\/14"}
]
1
2
3
4
5
6
7
8
9
10

When you capture the response data in your callback function and serialize the JSON, it will converted to an array of dictionaries. This means your TableViewController class will need a property to store it that looks like this:

var jsonArray: [[String:String]]?
1

NOTE

Pay special attention to the shape of this array. This will help you understand how to access each dictionary within it using the indexPath.row value.

In your tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int{} method, you will use optional binding to return the .count of the jsonArray.count and, if it is still nil, you return '0'.

In your override tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell{} method, again you will use optional binding on the jsonArray to access it only if the data was created properly. You will need to access the dictionary of values in the array using the indexPath.row passed to the tableView function.

You will then take the "eventTitle" and "eventDate" string values from your dictionary and set that cell's labels with this information.

NOTE

You will need to use the DispatchQueue.main.async {} in a callback function to update the UI, like when you call the reloadData() method on your tableView.

Marks Rubric

Create Layout: (4pt)

  • TableViewController with embedded Navigation Controller (2pt)
  • Add Bar Button Item to nav bar in table view labeled 'Load' (1pt)
  • Give prototype cell an Identifier name (1pt)

TableViewController class: (3pt)

  • Create IBAction for 'Load' button (1pt)
  • Create jsonData object to hold response (2pt)

Button Action function: (7pt)

  • Create button Action (1pt)
  • Create URL (1pt)
  • Create Request using URL (1pt)
  • Create Session using shared session (1pt)
  • Create task object from session passing in request and completion handler (2pt)
  • Execute task (1pt)

Completion Handler Request Task function: (9pt)

  • Create the completion handler function for the url session (2pt)
  • If the serverError is not nil, execute the callback function passing in empty string for data and description of error message (2pt)
  • If there was no error, convert the raw data to a utf8 json string, and execute callback passing in json string data, and nil for the error (5pt)

Callback function: (12pt)

  • Output the error if it's not nil using the print method (1pt)
  • If there is no error, print the json information to the console (1pt)
  • Convert json string to data (2pt)
  • Attempt to convert the data to a json object stored in the jsonData object (3pt)
  • Catch and print out any errors in jsonData conversion (2pt)
  • Call reloadData on tableView on main thread with dispatch async (3pt)

TableView(numberOfRowsInSection) method: (3pt)

  • Use optional binding to return json array count (2pt)
  • If the json data does not exist return 0 (1pt)

TableView(cellForRowAtIndexPath) method: (7pt)

  • Get a copy of the dequeued reusable cell (2pt)
  • Use optional binding to get the jsonData object if it exists, and get the current dictionary by using the indexPath.row (3pt)
  • Set each tableViewCell's textLabel with the 'eventTitle' and 'eventDate' values in the current json dictionary from the jsonData array (2pt)

Quality Control (30pt)

  • Use a CollectionViewController with a custom CollectionViewCell with proper constraints instead of a TableViewController (15pt)
  • Code is clear and well-commented (10pt)
  • Application runs without errors (5pt)

Total: 75pt

Submission

Submit a .zip file of your assignment through Brightspace.

Use the following naming convention for submissions:

username_assignment-title.zip for example - lenc0001_assignment-4.zip

Section 300

Section 310

Last Updated: 12/18/2020, 7:27:09 AM