Tag Archives: 数据存储

iOS项目开发-如何在沙盒中创建文件夹

一、基本思路

1、拼接好需要创建文件夹在沙盒中的绝对路径

2、利用NSFileManager判断需要创建的目录中是否存在该文件夹

3、如果不存在则创建该文件夹

二、关键代码

1
2
3
4
5
//
//  SACache.m
//  MIG
//
//  Created by 余西安 on 14/11/27.[......]<p class="read-more"><a href="https://www.yusian.com/blog/project/2014/12/01/152706416.html">继续阅读</a></p>

iOS开发中自定义对象的归档

1、在iOS开发中,对象的归档存储是最为常用一种操作,我们经常需要将对象保存到本地,后续再从本地读取调用,比如说游戏中的存档操作。
2、常规类型如字符串、数组、字典、图片等对象的归档系统都有对应的方法,使得归档变得简单,那么自定义的对象如何归档呢?
3、实现原理与常规类型归档类似,唯一不同的是自定义对象如果需要归档则必须遵守协议,并实现该协议中的两个方法:

1
2
3
4
#pragma mark 自定义对象解档必须实现方法
- (id)initWithCoder:(NSCoder *)aDecoder
#pragma mark 自定义对象归档必须实现方法
- (void)encodeWithCoder:(NSCoder *)aCoder

4、举例说明,现自定义一个Person类,成员变量有name、age、phone,现需要对该对象进行归档,对象该如何写:
4.1、Person.h

1
2
3
4
5
6
7
8
9
10
11
12
13
#import <Foundation/Foundation.h>
 
@interface Person : NSObject <nscoding>
 
@property (nonatomic, strong)   NSString    *name;
 
@property (nonatomic, assign)   NSInteger   age;
 
@property (nonatomic, strong)   NSString    *phone;
 
- (id)initWithName:(NSString *)name age:(NSInteger)age phone:(NSString *)phone;
 
@end</nscoding>

4.2、Person.m[……]

继续阅读

iOS开发中多对象归档操作

1、NSData方式多对象归档

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
    // 1、创建归档路径
    NSString *dataPath = [documentsPath stringByAppendingPathComponent:@"data.plist"];
    // 2、创建可变数据对象
    NSMutableData *data = [NSMutableData data];
    // 3、创建归档
    NSKeyedArchiver *archiver = [[NSKeyedArchiver alloc] initForWritingWithMutableData:data];
    // 4、归档中添加对象元素
    [archiver encodeObject:array forKey:@"array"];
    [archiver encodeObject:dict forKey:@"dict"];
    [archiver encodeObject:string forKey:@"string"];
    [archiver encodeObject:imageData forKey:@"image"];
    // 5、结束归档
    [archiver finishEncoding];
    // 6、写入本地沙盒
    [data writeToFile:dataPath atomically:YES];
    // 7、取出归档即解档
    NSData *data1 = [NSData dataWithContentsOfFile:dataPath];
    NSKeyedUnarchiver *unarchive1 = [[NSKeyedUnarchiver alloc] initForReadingWithData:data1];
    // 8、还原各对象
    NSArray *array1 = [unarchive1 decodeObjectForKey:@"array"];
    NSDictionary *dict1 = [unarchive1 decodeObjectForKey:@"dict"];
    NSString *string1 = [unarchive1 decodeObjectForKey:@"string"];
    UIImage *imag1 = [UIImage imageWithData:[unarchive1 decodeObjectForKey:@"image"]];

2、数组方式进行多对象归档[……]

继续阅读

iOS开发中基本文件读写操作示例

不需要多解释,直接上代码说明,代码中有相关注释

1
2
3
4
5
    // Home路径
    NSString *homePath = NSHomeDirectory();
 
    // Caches路径
    NSArray *caches = NSSearchPathForDirectorie[......]<p class="read-more"><a href="https://www.yusian.com/blog/project/2014/11/05/210124473.html">继续阅读</a></p>

App中常用的几个目录如何获取

苹果App中常用的目录有四个,分别是:
Documents
Library/Caches
Library/Preferences
tmp

如何取这4个目录呢?
1、取App所在目录

1
NSString *home = NSHomeDirectory();

2、取Documents所在目录:

1
NSAr[......]<p class="read-more"><a href="https://www.yusian.com/blog/project/2014/11/05/202313483.html">继续阅读</a></p>