iOS 键值存储 ZXKVStore

码农软件 · 软件分类 · 其他(Others) · 2019-07-18 19:14:22

软件介绍

ZXKVStore 是一个简单易用的键值数据存储。   

使用:

println(ZXKV["homepage"]) //nil        
ZXKV["homepage"] = "http://www.zhangxi.me"  // store a value to the key
println(ZXKV["homepage"]) //http://www.zhangxi.me
let array = ["abc","123"]
ZXKV["array"] = array
println(ZXKV["array"])  //["abc","123"]
//any object which implemented NSCoding can be stored.


本文地址:https://codercto.com/soft/d/10425.html

Flexible Pattern Matching in Strings

Flexible Pattern Matching in Strings

Gonzalo Navarro、Mathieu Raffinot / Cambridge University Press / 2007-7-30 / USD 64.99

String matching problems range from the relatively simple task of searching a single text for a string of characters to searching a database for approximate occurrences of a complex pattern. Recent ye......一起来看看 《Flexible Pattern Matching in Strings》 这本书的介绍吧!

Base64 编码/解码
Base64 编码/解码

Base64 编码/解码

RGB HSV 转换
RGB HSV 转换

RGB HSV 互转工具

HEX CMYK 转换工具
HEX CMYK 转换工具

HEX CMYK 互转工具