Oops, it looks like I forgot to move the declaration of the storageType property into the public API before the 1.1 release. It exists, it’s just not declared in CBLManager.h.
For now you can work around this by adding your own declaration of it in your source file:
@interface CBLManager (OopsNotDeclared)
@property (copy, nonatomic) NSString* storageType;
@end
Alternatively you can register a user default:
[[NSUserDefaults standardUserDefaults] registerDefaults: @{@“CBLStorageType”: @“ForestDB”}];
(I think the other developers who’ve been using ForestDB must all be doing it that way, because none of them reported that the Obj-C property is missing…)
—Jens