-
Notifications
You must be signed in to change notification settings - Fork 102
Home
mirek edited this page Sep 26, 2010
·
2 revisions
## Reading
+ (NSMutableArray *) YAMLWithStream: (NSInputStream *) stream options: (YAMLReadOptions) opt error: (NSError **) error;
+ (NSMutableArray *) YAMLWithData: (NSData *) data options: (YAMLReadOptions) opt error: (NSError **) error;
Read options:
kYAMLReadOptionImmutable
kYAMLReadOptionMutableContainers
kYAMLReadOptionMutableContainersAndLeaves
-
kYAMLReadOptionStringScalars
- values are read asNSString
. Useful in the situations where you're just interested in displaying information, for example in the table cells.
Returned object will be a list of documents. Often you will be interested in just the first document.