Submitting Your Projects

The following are instructions on how to properly submitting your projects to CMS, which you'll be doing for your assignments.

Please follow these instructions carefully! If your file is incorrectly submitted, you will receive a 0 because we won't be able to compile & run your project and won't be able to grade your project -- so please read through this entire post!

Naming Your Projects

Please name your projects with the format: netid_project#. For example, if your netID is abc123 and you're working on Project 2, you should name your project "abc123_p2".

Xcode Playgrounds (Project 1, Extra Credit Project)

Name your playground using the correct format when you first create the playground, like so:

Zipping Your Playground to Submit

To zip the playground, right click on the .playground and select "netid_project#.playground".

This will create a .zip file. Please name your zip file the same way: netid_project#.zip and upload the .zip file to CMS.

Xcode Projects (Projects 2 – 6)

Name your project with the correct format when you first create your Xcode project, like so:

Doing this when you create the project will ensure that the .xcodeproj and the folder containing your project files will be appropriately named and help us keep organized while grading.

DO NOT RENAME YOUR PROJECT FILES IN FINDER AFTER CREATING THE PROJECT! This will cause your entire project to fail to compile. If you need help renaming your project into this format after you've worked on the project, please come to office hours or see us after class.

Zipping Your Project to Submit

An Xcode project is composed of multiple files. At the top-level, an Xcode project consists of an .xcodeproj file with your project name and a folder with the project name. There may be other folders, but the .xcodeproj file and the folder with the project named is what you need to submit as a zipfile.

For example, a project named "p2" might have a file structure that looks like this:

To zip the Xcode project, select both the project folder and the .xcodeproj file, right click and select "Compress 2 Items".

This will create a .zip file. Please name your zip file the same way: netid_project #.zip and upload the .zip file to CMS.

Projects with CocoaPods (Project 6)

For our last project, we will be using CocoaPods to install the networking library to help our app make calls to the backend and to external APIs. For those projects, make sure you zip everything in the top level folder, including the .xcworkspace and .xcodeproj files.

Challenge Problems

If you do any of the additional challenge problems, please include (in your final .zip file) a plaintext file named "README" and list the challenge numbers that you implemented.

For example, a project might have 4 challenge problems and if you implemented challenge problem #1 and #3, your README.txt will have "1, 3" on it. If you want to go into detail on what you implemented, this would be a good place to do so!

If you do not implement any of the challenge problems, you do not have to attach a README.

Last updated