我目前在 NSUserDefaults 中存储一个 NSUInteger 来保存数据,但我需要转到一个 NSObject 即 NSCoding 兼容,并将存储为 NSData 。有没有办法确定我是在我的 key 中存储一个 int 还是一个对象,以便我可以容纳已经或没有从一种持久性类型迁移到另一种持久性类型的用户?我知道 objectForKey 返回一个 id,所以这够好吗?
- (id) returnStuff {
NSData *data = [myUserDefaults objectForKey:myKey];
if([data isKindOfClass:[NSData class]) {
// then it must be an archived object
return (desiredObjectClass*)[NSKeyedUnarchiver unarchiveObjectWithData:data];
}
else {
NSUInteger returnInt = [myUserDefaults integerForKey:myKey];
return [NSNumber numberWithInteger: returnInt];
}
Best Answer-推荐答案 strong>
您可以使用 isKindOfClass: 来特别对待 NSData ,就像您所做的那样,除了我不会费心拆箱整数来重新装箱。以下方法处理并返回任何类型。
注意:没有必要强制转换未归档的数据,因为编译器不会关心您返回 id 。
- (id)stuffForKeyNSString *)key {
id value = [[NSUserDefaults standardUserDefaults] objectForKey:key];
if ([value isKindOfClass:[NSData class]]) {
// then it must be an archived object
NSData *dataValue = (NSData *)value;
return [NSKeyedUnarchiver unarchiveObjectWithData:dataValue];
}
return value;
}
关于ios - 如何判断 NSUserDefaults 中存储了什么样的数据,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/34341310/
|