WARNING: Dynamic property TFFormEntry.values has type '@"NSMutableDictionary"' unsupported by TFFormEntry
On Jul 17, 2015, at 1:17 PM, Brendan Duddridge <bren...@gmail.com> wrote:I have a property on my class called "values". It's an NSMutableDictionary.However, I guess the JSON parser doesn't like that it's mutable. Is there a way to tell CBL on iOS that I want my values property to be mutable?
On Jul 17, 2015, at 4:15 PM, Brendan Duddridge <bren...@gmail.com> wrote:So to work around it, I'm creating a mutable copy of the values dictionary, then setting my individual properties in the values dictionary, then setting the entire dictionary back using self.values = [NSDictionary dictionaryWithDictionary:mutableDict];