Powerful dependency injection for Cocoa and CocoaTouch. Lightweight, yet full-featured and super-easy to use.
Visit the Typhoon website for an introduction. There's also a nice intro over at Big Nerd Ranch, or here's an article, by John Reid. Quite a few books have been written on the topic, though we're not familiar with one that focuses specifically on Objective-C, Swift or Cocoa yet.
Check out the feature list.
Typhoon works with Swift, but is written in Objective-C and uses the Objective-C runtime for reflection, injection and instrumenting assemblies. We think Typhoon is an excellent option if you need Dependeny Injection in your Swift projects, however we're happy to announce that we've been working on a pure Swift framework! If you've used Typhoon in the past, our Swift library will feel very familiar yet completely harmonious with static, idiomatic Swift.
We didn't want to create a pure Swift version of Typhoon unless it would be better in every way, so it has been a while coming. But when it coms to performance the new library is as Swift as hell :)
- Read the Quick Start for Objective-C or Swift.
- Here's the User Guide.
- And here are the API Docs. Generally googling a Typhoon class name will return the correct page as the first hit.
- 日本のドキュメンテーション
let assembly = MyAssembly().activate()
let viewControler = assembly.recommendationController() as! RecommendationController
- Try the official Swift Sample Application or Objective-C Sample Application.
- This sample shows how to set up Typhoon with Storyboards, Core Data and Reactive Cocoa.
Have a Typhoon example app that you'd like to share? Great! Get in touch with us :)
Typhoon is available through CocoaPods or Carthage, and also builds easily from source.
##With CocoaPods . . .
###Static Library
# platform *must* be at least 5.0
platform :ios, '5.0'
target :MyAppTarget, :exclusive => true do
pod 'Typhoon'
end
###Dynamic Framework
If you're using Swift, you may wish to install dynamic frameworks, which can be done with the Podfile shown below:
# platform *must* be at least 8.0
platform :ios, '8.0'
# flag makes all dependencies build as frameworks
use_frameworks!
# framework dependencies
pod 'Typhoon'
Simply import the Typhoon module in any Swift file that uses the framework:
import Typhoon
##With Carthage
github "appsquickly/Typhoon"
##From Source
Alternatively, add the source files to your project's target or set up an Xcode workspace.
NB: All versions of Typhoon work with iOS5 and up (and OSX 10.7 and up), iOS8 is only required if you wish to use dynamic frameworks.
If you can't find what you need in the Quick Start or User Guides above, then Typhoon users and contributors monitor the Typhoon tag on Stack Overflow. Chances are your question can be answered there.
Please raise a GitHub issue.
Great! Here's the contribution guide.
Typhoon is a non-profit, community driven project. We only ask that if you've found it useful to star us on Github or send a tweet mentioning us (@appsquickly). If you've written a Typhoon related blog or tutorial, or published a new Typhoon powered app, we'd certainly be happy to hear about that too.
Typhoon is sponsored and lead by AppsQuick.ly with contributions from around the world.
© 2012 - 2015 Jasper Blues, Aleksey Garbarev and contributors.