Nimbus
0.9.3 - Nimbus is proudly hosted on Github
An iOS framework whose growth is bounded by O(documentation).
|
Methods | |
Accessing Global State | |
(NIImageMemoryCache *) | + imageMemoryCache |
(NSOperationQueue *) | + networkOperationQueue |
Modifying Global State | |
(void) | + setImageMemoryCache: |
(void) | + setNetworkOperationQueue: |
+ (NIImageMemoryCache *) imageMemoryCache |
Access the global image memory cache.
If a cache hasn't been assigned via Nimbus::setGlobalImageMemoryCache: then one will be created automatically.
+ (NSOperationQueue *) networkOperationQueue |
Access the global network operation queue.
The global network operation queue exists to be used for asynchronous network requests if you choose. By defining a global operation queue in the core of Nimbus, we can ensure that all libraries that depend on core will use the same network operation queue unless configured otherwise.
If an operation queue hasn't been assigned via Nimbus::setGlobalNetworkOperationQueue: then one will be created automatically with the default iOS settings.
+ (void) setImageMemoryCache: | (NIImageMemoryCache *) | imageMemoryCache |