mirek / YAML.framework

Proper YAML support for Objective-C. Based on recommended libyaml.

Home Page:http://github.com/mirek/YAML.framework

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Data encoding UTF8

apikas opened this issue · comments

The method dataFromYAML in YAMLSerialization.m uses UTF8 until the last statement, when it suddenly uses NSUnicodeStringEncoding. This seems odd. I wanted UTF8 and changed to:

return [data dataUsingEncoding:NSUTF8StringEncoding]

Maybe the YAMLWriteOptions should include encodings?

Fixed, thanks.