我正在尝试在com.apple.scheduler plist中获取repeatInterval键的值。我想像这样使用NSDictionary的valueForKeyPath:方法:
CFPropertyListRef value;
value = CFPreferencesCopyValue(CFSTR("AbsoluteSchedule"),
CFSTR("com.apple.scheduler"),
kCFPreferencesCurrentUser,
kCFPreferencesCurrentHost);
NSNumber *repeatInterval = [(NSDictionary *)value valueForKeyPath:@"com.apple.SoftwareUpdate.SUCheckSchedulerTag.Timer.repeatInterval"];
但问题是第一个键实际上是“com.apple.SoftwareUpdate”,而不仅仅是“com”。我可以通过单独获得第一个值来解决这个问题:
NSDictionary *dict = [(NSDictionary *)value valueForKey:@"com.apple.SoftwareUpdate"];
NSNumber *repeatInterval = [dict valueForKeyPath:@"SUCheckSchedulerTag.Timer.repeatInterval"];
我只是想知道是否有办法在密钥路径中逃避句点,这样我就可以消除这个额外的步骤。
答案 0 :(得分:1)
NSDictionary没有valueforKeyPath:方法。它只是调用NSObject实现,这是你问题的根源。
也许您可以使用自己的转义字符在NSDictionary的类别中重新实现它。