Skip to content
This repository has been archived by the owner on Oct 4, 2019. It is now read-only.
Paul Taykalo edited this page May 28, 2015 · 16 revisions

DYCI

Dynamic code injection tool. Allows you to inject your code into running iOS application, whithout restarting it.

Installation

If you already know, what this tool is about, you can move to Installation page

Adding to your project

After installation, you need to add dyci library to your project
If you are using CocoaPods, then, just add this line to your PodFile

pod 'dyci', :git => 'https://github.com/DyCI/dyci-main.git'

If not, then, you can add dyci in other ways

Reasons, why do you need this tool

  • It's good for applying small logic changes
  • It's good for quick small fixes on big projects.
  • It's good for debugging purposes. Remember, you can inject any code at runtime. Logging is the code also.

Differences from other tools

  • You need minimum moves to enable dyci
  • You aren't writing some kind of script, you are writing your code!
  • You don't need to prepare/modify/lock your code for dyci
  • Your changes are always saved (They will not be discarded on next run)

How it works

If you curious about How how it works, you can read about it in wiki.

##Example There's one example in sources
There's video about Tic-Tac-Toe game creation without project restart
Video at Youtube

##Some points of view

  1. Dyci is not about loading new code in application.
  2. Dyci is about speeding up development.
  3. Each time, you are using dyci, it saves your time.

##WARNING Please, do not use this tool in your real applications, that you about to publish in App Store. Dyci won't work on devices by default. It was made for purpose. Dynamic code injection is good for development, but it will leave huge security hole if you put it in your application. Please, do not :) I warned you.

#FAQ If you have some questions, before asking them , make sure that they aren't listed in FAQ