tciuro / NanoStore

NanoStore is an open source, lightweight schema-less local key-value document store written in Objective-C for Mac OS X and iOS.
Other
404 stars 39 forks source link

Add keyed subscript accessor #105

Closed kkazuo closed 9 years ago

kkazuo commented 10 years ago

Did you consider to add keyed subscript accessor with NanoObject? I think it is convenient.

NSFNanoObject *object = [NSFNanoObject nanoObject];
object[@"foo"] = @"bar";
id value = object[@"foo"];
tciuro commented 9 years ago

Thanks Kazuo!