-
Notifications
You must be signed in to change notification settings - Fork 121
Home
Dynamic code injection tool. Allows you to inject your code into running iOS application, whithout restarting it.
If you already know, what this tool is about, you can move to Installation page
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
- 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.
- 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)
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
- Dyci is not about loading new code in application.
- Dyci is about speeding up development.
- 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