文件名称:SwiftyKVStore:由Unqlite支持的Swift的简单KeyValue存储
文件大小:141KB
文件格式:ZIP
更新时间:2024-02-24 05:00:52
swift ios nosql key-value-store NoSQLC
SwiftyKVStore 由支持的另一个用于Swift的简单键/值存储。 通过提取Unqlite的最小功能集, Unqlite SwiftyKVStore非常简单。 安装 pod ' SwiftyKVStore ' , ' 0.2.0 ' 用法 let kvStore = SwiftyKVStore ( name : " test1 " ) kvStore. put ( key : " key1 " , value : " value1 " ) if let value = kvStore. get ( key : " key1 " ) { print ( " value: \( value ) " ) } kvStore. delete ( key : " key1 " ) if let value = kvStore. get ( key : " key1 " ) { print ( " value: \( value ) " ) } else { print ( " nothing " ) } 执照 Apache许可证版本2.0。
【文件预览】:
SwiftyKVStore-master
----.gitignore(238B)
----SwiftyKVStore.xcodeproj()
--------project.pbxproj(21KB)
----README.md(616B)
----Example()
--------AppDelegate.swift(2KB)
--------Base.lproj()
--------Assets.xcassets()
--------Info.plist(1KB)
--------ViewController.swift(945B)
----buildFramework.sh(1KB)
----LICENSE(11KB)
----SwiftyKVStore.podspec(944B)
----.swift-version(4B)
----SwiftyKVStore()
--------Store.h(429B)
--------StorePrivate()
--------SwiftyKVStore.swift(689B)
--------Info.plist(774B)
--------SwiftyKVStore.h(518B)
--------Unqlite()
--------Store.m(5KB)