iOS DeveloperiOS 开发

YTKKeyValueStore

2016-08-04  本文已影响346人  张芳涛

先说一下这个框架是干什么的。这个是基于FMDB的一层封装,让你的数据存储简单到爆爆爆爆爆爆爆爆爆爆爆爆!!!

使用步骤:

第一步:创建一个应用

第二步:在终端CD目录到你的项目的目录下面,然后vim profile,在podFile里面输入

target’FMDB’ do

pod 'YTKKeyValueStore'

end

第三步:开始使用。

我先附上我的测试代码:

存储数据:


//

//ViewController.m

//FMDB

//

//Created by张芳涛on 16/8/4.

//Copyright © 2016年张芳涛. All rights reserved.

//

#import"ViewController.h"

#import"YTKKeyValueStore.h"

@interfaceViewController()

@property(nonatomic,strong)YTKKeyValueStore*store;

@end

@implementationViewController

- (void)viewDidLoad {

[superviewDidLoad];

[selfcreateTable];

}

-(void)createTable

{

dispatch_async(dispatch_get_main_queue(), ^{

_store= [[YTKKeyValueStorealloc]initDBWithName:@"test.db"];

NSString*tableName =@"user_table";

[_storecreateTableWithName:tableName];

});

}

-(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent*)event

{

[_storeputString:@"hello World"withId:@"firstKey"intoTable:@"user_table"];

// NSString *str = [_store getStringById:@"firstKey" fromTable:@"user_table"];

//NSLog(@"刚才保存的字符串是:%@",str);

}

- (void)didReceiveMemoryWarning {

[superdidReceiveMemoryWarning];

// Dispose of any resources that can be recreated.

}

@end

读取数据:

在touchbegin里面改一下:

-(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent*)event

{

[_storeputString:@"hello World"withId:@"firstKey"intoTable:@"user_table"];

// NSString *str = [_store getStringById:@"firstKey" fromTable:@"user_table"];

//NSLog(@"刚才保存的字符串是:%@",str);

}

。因为只是测试到底能不能用,所以没有事太多情况。

下面就是YTKKeyValueStore的一些代码细节介绍:

YTKKeyValueStore *store = [[YTKKeyValueStore alloc] initDBWithName:@"test.db"];

NSString *tableName = @"user_table";

[store createTableWithName:tableName];

//保存

NSString *key = @"1";

NSDictionary *user = @{@"id": @1, @"name": @"tangqiao", @"age": @30};

[store putObject:user withId:key intoTable:tableName];

//查询

NSDictionary *queryUser = [store getObjectById:key fromTable:tableName];

NSLog(@"query data result: %@", queryUser);

##集成说明

你可以在Podfile中加入下面一行代码来使用YTKKeyValueStore

pod 'YTKKeyValueStore'

你也可以手动添加源码使用本项目,将开源代码中的`YTKKeyValueStore.h`和`YTKKeyValueStore.m`添加到你的工程中,并且在工程设置的`Link Binary With Libraries`中,增加`libsqlite3.dylib`,如下图所示:

![](http://blog.devtang.com/images/key-value-store-setup.jpg)

##使用说明

所有的接口都封装在`YTKKeyValueStore`类中。以下是一些常用方法说明。

###打开(或创建)数据库

通过`initDBWithName`方法,即可在程序的`Document`目录打开指定的数据库文件。如果该文件不存在,则会创建一个新的数据库。

```

//打开名为test.db的数据库,如果该文件不存在,则创新一个新的。

YTKKeyValueStore *store = [[YTKKeyValueStore alloc] initDBWithName:@"test.db"];

```

###创建数据库表

通过`createTableWithName`方法,我们可以在打开的数据库中创建表,如果表名已经存在,则会忽略该操作。如下所示:

```

YTKKeyValueStore *store = [[YTKKeyValueStore alloc] initDBWithName:@"test.db"];

NSString *tableName = @"user_table";

//创建名为user_table的表,如果已存在,则忽略该操作

[store createTableWithName:tableName];

```

###读写数据

`YTKKeyValueStore`类提供key-value的存储接口,存入的所有数据需要提供key以及其对应的value,读取的时候需要提供key来获得相应的value。

`YTKKeyValueStore`类支持的value类型包括:NSString, NSNumber, NSDictionary和NSArray,为此提供了以下接口:

```

- (void)putString:(NSString *)string withId:(NSString *)stringId intoTable:(NSString *)tableName;

- (void)putNumber:(NSNumber *)number withId:(NSString *)numberId intoTable:(NSString *)tableName;

- (void)putObject:(id)object withId:(NSString *)objectId intoTable:(NSString *)tableName;

```

与此对应,有以下value为NSString, NSNumber, NSDictionary和NSArray的读取接口:

```

- (NSString *)getStringById:(NSString *)stringId fromTable:(NSString *)tableName;

- (NSNumber *)getNumberById:(NSString *)numberId fromTable:(NSString *)tableName;

- (id)getObjectById:(NSString *)objectId fromTable:(NSString *)tableName;

```

###删除数据接口

`YTKKeyValueStore`提供了以下接口用于删除数据。

```

//清除数据表中所有数据

- (void)clearTable:(NSString *)tableName;

//删除指定key的数据

- (void)deleteObjectById:(NSString *)objectId fromTable:(NSString *)tableName;

//批量删除一组key数组的数据

- (void)deleteObjectsByIdArray:(NSArray *)objectIdArray fromTable:(NSString *)tableName;

//批量删除所有带指定前缀的数据

- (void)deleteObjectsByIdPrefix:(NSString *)objectIdPrefix fromTable:(NSString *)tableName;

```

###更多接口

`YTKKeyValueStore`还提供了以下接口来获取表示内部存储的key-value对象。

```

//获得指定key的数据

- (YTKKeyValueItem *)getYTKKeyValueItemById:(NSString *)objectId fromTable:(NSString *)tableName;

//获得所有数据

- (NSArray *)getAllItemsFromTable:(NSString *)tableName;

```

由于`YTKKeyValueItem`类带有`createdTime`字段,可以获得该条数据的插入(或更新)时间,以便上层做复杂的处理(例如用来做缓存过期逻辑)。

上一篇下一篇

猜你喜欢

热点阅读