Implement simple native iPhone application for management of personal notes. The application should be ready to build and run right after clone of your repository.
The application should integrate API, which is ready to use at URL: http://private-9aad-note10.apiary-mock.com/
GET /notes
GET /notes/{id}
POST /notes
PUT /notes/{id}
DELETE /notes/{id}
Main page with list of notes should be opened right after installation/opening of the application. User can display, edit, delete and create new note.
You are the GUI designer, feel free to do whatever you want, but follow platform conventions and standards. The application should be created from standard and native components. Swift is preferred way. Objective-C is simply OK. The project has to contain at least one unit test.
- Use
git clone
for getting repository - Use command line to navigate into root directory of project
- Run
pod install
in terminal - Open
BSC.xcworkspace
file - Run project using
CMD+R
- After successful project setup, go to
BSCTests
group - In
NotesModelTests.swift
file find test methodtestAddNewNote
and run it by clicking on symbol of diamond