gpt4 book ai didi

ios - 提高 setValueForKeyPath 的鲁棒性

转载 作者:行者123 更新时间:2023-11-28 20:45:12 26 4
gpt4 key购买 nike

我已经为 NSObject 创建了一个扩展,以允许从 PLIST 或字典中包含的数据设置对象属性。我确实使用了 setValuesForKeysWithDictionary 但这只适用于键而不是 keyPaths。我的扩展做了同样的事情,除了允许 PLIST 包含 key 路径和 key 。例如,detailTextLabel.text @"detailed text"作为键值对。

这很好用,除了可能会因为 PLIST 中的拼写错误而导致应用程序崩溃。例如,如果属性名称存在但类型与预期不同(例如,数字而不是字符串),它将崩溃。什么是使它更健壮并编写防御性代码以避免这些类型的错误的最佳方法?

我已经在我的对象中使用 - (void) setValue:(id)value forUndefinedKey:(NSString *)key {} 来捕获 PLIST 中与实际键不对应的项目.

#pragma mark -
#pragma mark Extensions to NSObject

@implementation NSObject (SCLibrary)

- (void) setValuesForKeyPathsWithDictionary:(NSDictionary *) keyPathValues {
NSArray *keys;
int i, count;
id key, value;

keys = [keyPathValues allKeys];
count = [keys count];
for (i = 0; i < count; i++)
{
key = [keys objectAtIndex: i];
value = [keyPathValues objectForKey: key];

[self setValue:value forKeyPath:key];
}
}

提前致谢,戴夫。

最佳答案

setValue:forKeyPath:

周围添加了通用的 @try/@catch
@try {
[self setValue:value forKeyPath:key];
}
@catch (NSException * e) {
NSLog(@"%@",e);
}

这确实可以防止应用程序崩溃,但是我希望找到一种在尝试设置选择器值之前检查选择器的方法。

如果没有更好的答案,将接受这个答案。

关于ios - 提高 setValueForKeyPath 的鲁棒性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6646971/

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