This repository was archived by the owner on Nov 24, 2021. It is now read-only.
DATAStack — 4.0.1
- Improved support for multiple platforms
Previously on 4.0.0
- Rewritten in Swift
Breaking changes
- Now you should use modules, so instead of
#import "DATASource.h
you would do@import DATASource;
use_frameworks!
pod 'DATAStack'
- Renamed Enum + Improved Swift compatibility
Objective-C:
DATAStackInMemoryStoreType => DATAStackStoreTypeInMemory
DATAStackSQLiteStoreType => DATAStackStoreTypeSQLite
Swift:
DATAStackInMemoryStoreType => .InMemory
DATAStackSQLiteStoreType => .SQLite