Reading List

Reading List is a free, open source iOS app for iPhone and iPad. Reading List allows users to track and catalog the books they read.

Reading-List

Requirements

  • Xcode 9.4

Dependencies

Reading List uses CocoaPods for including third-party libraries, and fastlane to automate some processes. To install the correct versions, run:

gem install bundler
bundler install
pod install

Architecture

Reading List is written in Swift, and primarily uses Apple provided technologies.

UI

Reading List mostly uses storyboards for UI design (see below); a limited number of user input views are built using Eureka forms.

storyboard

Data persistence

Reading List uses Core Data for data persistence. There are four entities used in Reading List: Book, Author, Subject and List. The attributes and relations between then are illustrated below:

coredata_entities

GitHub