In my application, I am trying to serialize a server response dictionary and writing it to file system. But I am getting error "Property list invalid for format" for some responses. The reason is CFNull objects in the server response. Now, the server response will keep on changing so I do not have a definite way to remove CFNull objects (). Below is my code:
NSString *anError = nil;
NSData *aData = [NSPropertyListSerialization dataFromPropertyList:iFile format:NSPropertyListXMLFormat_v1_0 errorDescription:&anError];
What is the best way to tackle this issue? How can I remove all CFNull objects from server response in one shot?
I switched to NSKeyedArchiver option. Little slower than NSPropertyListSerialization but takes care of NSNull/CFNull objects.
I had this problem with receiving a response from the Facebook SDK, so I implemented this method:
}
That'll walk the hierarchy of the dictionary and turn all CFNulls into the empty string.
If you can't serialize it via the
datafromPropertyList:...
API, then it isn't a property list.Either fix the server responses to barf up proper property lists or massage the data in your app such that it can be properly interpreted as a property list.
I wrote a Category to clean up a dictionary :