AdvancediOS icon indicating copy to clipboard operation
AdvancediOS copied to clipboard

An iOS example project demonstrating advanced concepts

AdvancediOS GitHub license CircleCI

AdvancediOS demonstrates some advanced concepts for iOS application development using a small example application.

Advanced concepts include:

This project is mostly intended to be used as a playground to experiment with new tools, libraries, and design patterns for iOS development.

Setup

Prerequisites

  • Ruby installation matching the version found in .ruby-version (use rbenv to switch versions)
  • Homebrew
  • Bundler
  • Xcode installation matching version found in .xcode-version (use xcode-install to switch versions)

Installation

  1. Setup the project:
$ brew bundle && bundle install
$ bundle exec fastlane bootstrap
  1. Open Application.xcodeproj

Notes

  • Run $ bundle exec fastlane for a list of Fastlane lanes that can be run on the repository.
  • Application.xcodeproj should be used for general development for building a release build.
  • Application_Dev.xcworkspace is only useful when debugging issues in Carthage dependencies since the Carthage dependency's project is added instead of using the pre-built framework.

Contributions