yamlkit
yamlkit copied to clipboard
YAMLKit is a bridge of LibYAML to Objective-C.
Results
1
yamlkit issues
Sort by
recently updated
recently updated
newest added
Despite its name, initWithEncoding is not setting the encoding property: ``` - (id)initWithEncoding:(NSStringEncoding)enc { if((self = [super init])) { memset(&emitter, 0, sizeof(emitter)); yaml_emitter_initialize(&emitter); ``` ... Needs ``` encoding = enc;...