KO
|
EN
gitlite — search
Search
#typescript
#ai-agents
#ai
#dsh-plugin
#deepseek-harness
#open-source
#cli
#claude-code
#codex
#developer-tools
#react
#windows
Dotzu-Objective-c
★ 31
Open GitHub ↗
Dotzu Objective-c example project
Download README (.md)
Explore Similar Repositories
roll-your-gopher
:
A primer to creating your own gopherspace
RxJava2RetrofitDemo
:
A demo show how to use Retrofit with Rxjava
SetNeedsReadable
:
Helpful extensions for CGFloat and UIView aimed to enhance readability of layout code.
NMproject
:
Turning R and RStudio into a NONMEM model development environment
perfect-chisel
:
Chisel artifacts developed under IBM's involvement with the DARPA PERFECT program
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
Dotzu-Objective-c
?
Download (.md)
<p align="center"> <img src ="https://cloud.githubusercontent.com/assets/3276768/22606144/035a4a28-ea53-11e6-8359-323c214c2439.png"/> </p> # Dotzu-Objective-c Dotzu Objective-c example project. 👉 [Project link](https://github.com/remirobert/Dotzu) ## Installation Cocoapods: ```Ruby use_frameworks! pod 'DotzuObjc' ``` After installing the pod, go to your **Pod target**, set the **swift legacy language version** to **no**. <img width="879" alt="screen shot 2017-02-18 at 18 44 46" src="https://cloud.githubusercontent.com/assets/3276768/23095660/afc21adc-f60d-11e6-80b6-11c0b241b6ec.png"> ## Usage In the `AppDelegate` instanciate `Dotzu manager`. ```Objective-c @import Dotzu; @implementation AppDelegate - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { [[Dotzu sharedManager] displayWindow]; return YES; } @end ``` ## Logs ```Objective-c @import Dotzu_objc; NSLog(@"log verbose"); LogVerbose(@"verbose"); LogWarning(@"warning"); LogInfo(@"info"); LogError(@"ok"); ``` ## Network for AFNetworking: ```Objective-c NSURLSessionConfiguration *configuration = [NSURLSessionConfiguration defaultSessionConfiguration]; [[Dotzu sharedManager] addLoggerWithSession:configuration]; AFURLSessionManager *manager = [[AFURLSessionManager alloc] initWithSessionConfiguration:configuration]; ```