So far in your journey as an iOS developer, you've learned how to: build responsive UI, structure an app using MVC, persist data locally and remotely, interact with a backend service and used a variety of APIs available by Apple.
There are still many other topics you can explore, but with what you know today, you are able to build apps for any domain you can think of.
This project will combine your current expertise with the content from MOB 2.3 are able to build an app that's responsive and optimizes resources.
By the end of this project, you should be able to...
- Build a functional app that satisfies the requirements listed below.
- Implement common practices to aid with concurrency and persistence in an iOS app.
- Use GCD and/or Operations to work with the main and background threads.
- Use Xcode's Time Profiler to check the performance of your app.
- Be capable of explaining your coding decisions.
Your task is to create an app that let's users discover new music. The app will also let users preview songs and save them as favorite songs.
- There's a login page to authenticate the user with Spotify's API/SDK
- The home page should display new releases (albums).
- When you tap on an album, you will go to another view controller to view the tracks.
- Users can listen to a preview of the songs.
- Users can also save songs by marking them as favorite.
- There's another view controller to list all of your favorite songs. You can preview the song from this VC too.
- Optionally, add a VC for an artist's info and top tracks.
Check the resources for helpful documentation!
- Adhere to the description.
- You must use the Spotify API or Spotify SDK
- Allow for the tracks to be previewed (30-sec clips)
- Use a persistence method to save the favorite tracks, up to your criteria which one to use.
- Use GCD and/or Operations to handle concurrency.
- Authenticate users with the Spotify API/SDK - should also be able to log out
- Time profile your app and show evidence of it.
- Add favorite songs directly to a user's playlist in Spotify
- Create a VC for an artist's info and top tracks.
- Get creative with your designs!
- Implement Apple Sign In
You must score at least 70 points to pass the assignment. Breakdown of points below:
- (15 points): Code Quality: intuitive variable names, conventional casing, clear comments, modules are flexible and local, short line lengths, proper formatting.
- (10 points) Create a usable design that follows iOS UI Guidelines
- (15 points) Displays 10 most played artists
- (15 points) Tracks can be previewed
- (15 points) Each artist has a view that displays the top 10 tracks by the artist
- (15 points) Ability to favorite a top track, and view all favorites in a list in a separate view
- (5 points) Uses Spotify API/SDK
- (5 points) Evidence of using Time Profiler
- (5 points) Code on GitHub. Include a README file