1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
| //
| // LHDBPath.h
| // LHDBDemo
| //
| // Created by 3wchina01 on 16/2/26.
| // Copyright © 2016年 李浩. All rights reserved.
| //
|
| #import <Foundation/Foundation.h>
|
| @interface LHDBPath : NSObject
|
| #define DEFAULT_PATH [[NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES) firstObject]stringByAppendingPathComponent:@"filedata.sqlite"]
|
| @property (nonatomic,strong) NSString* dbPath;
|
| + (instancetype)instanceManagerWith:(NSString*)dbPath;
|
| @end
|
|