gpt4 book ai didi

iOS 对象归档从头到尾

转载 作者:行者123 更新时间:2023-12-01 18:19:02 24 4
gpt4 key购买 nike

关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。












想改进这个问题?将问题更新为 on-topic对于堆栈溢出。

8年前关闭。




Improve this question




我正在开发一个 iOS 应用程序,该应用程序涉及保存和检索包含单个 的多个实例的 NSMutableArray。定制 我制作的对象。我看过几个指南,例如Apple's Documentation

我得到了如何做到这一点的要点(我认为),似乎我必须使用归档,因为我的数组中的对象不是原始变量,因此我已经使我的对象符合 NSCoding 标准。但是,我也看到了使用 NSDefaults 或任何我不理解的示例(我没有文件 IO 经验)。在看到所有这些信息之后,我很难将所有内容拼凑在一起。我要找的是 完整 的从头到尾的指南示例 成功使用归档来保存和检索自定义对象(是否在数组中)的程序。如果有人可以为我指出一个很好的指南或在这篇文章中自己制作,那将不胜感激!谢谢大家,Stack Overflow 是一个很棒的地方!

附言如果需要更多信息,请在评论中告诉我!

最佳答案

确保您尝试归档的任何类都实现了 NSCoding 协议(protocol),然后执行以下操作:

@interface MyClass<NSCoding>

@property(strong,nonatomic) NSString *myProperty;

@end

@implementation MyClass
#define myPropertyKey @"myKey"
-(id)initWithCoder:(NSCoder *)aDecoder
{
self = [super init];
if( self != nil )
{
self.myProperty = [aDecoder decodeObjectForKey:myPropertyKey];
}

return self;
}

-(void)encodeWithCoder:(NSCoder *)aCoder
{
[aCoder encodeObject:[self.myProperty copy] forKey:myPropertyKey];

}

@end

然后我使用一个名为 FileUtils 的类来完成我的归档工作:
@implementation FileUtils


+ (NSObject *)readArchiveFile:(NSString *)inFileName
{
NSFileManager *fileMgr = [NSFileManager defaultManager];
NSString *documentsDirectoryPath = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES)[0];
NSString *filePath = [NSString stringWithFormat:@"%@/%@", documentsDirectoryPath, inFileName];


NSObject *returnObject = nil;
if( [fileMgr fileExistsAtPath:filePath] )
{
@try
{
returnObject = [NSKeyedUnarchiver unarchiveObjectWithFile:filePath];
}
@catch (NSException *exception)
{
returnObject = nil;
}
}

return returnObject;

}

+ (void)archiveFile:(NSString *)inFileName inObject:(NSObject *)inObject
{
NSString *documentsDirectoryPath = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES)[0];
NSString *filePath = [NSString stringWithFormat:@"%@/%@", documentsDirectoryPath, inFileName];
@try
{
BOOL didSucceed = [NSKeyedArchiver archiveRootObject:inObject toFile:filePath];
if( !didSucceed )
{
NSLog(@"File %@ write operation %@", inFileName, didSucceed ? @"success" : @"error" );
}
}
@catch (NSException *exception)
{
NSLog(@"File %@ write operation threw an exception:%@", filePath, exception.reason);
}

}

+ (void)deleteFile:(NSString *)inFileName
{
NSFileManager *fileMgr = [NSFileManager defaultManager];
NSString *documentsDirectoryPath = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES)[0];
NSString *filePath = [NSString stringWithFormat:@"%@/%@", documentsDirectoryPath, inFileName];
NSError *error;
if ( [fileMgr fileExistsAtPath:filePath] && [fileMgr removeItemAtPath:filePath error:&error] != YES)
{
NSLog(@"Unable to delete file: %@", [error localizedDescription]);
}
}


@end

关于iOS 对象归档从头到尾,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18773392/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com