gpt4 book ai didi

objective-c - plist 文件中的根项类型?

转载 作者:行者123 更新时间:2023-12-03 17:51:00 24 4
gpt4 key购买 nike

如何检查 plist 的根项是数组还是字典?感谢您的帮助

enter image description here

最佳答案

使用以下方式可以通过 Objective-C 检测字典的根元素是否为数组

NSString *thePath = [[NSBundle mainBundle] pathForResource:@"YourCustom" ofType:@"plist"];
NSURL *theUrl = [NSURL fileURLWithPath:thePath];

id messagesInfo = [[NSDictionary dictionary] initWithContentsOfURL:theUrl];
if([messagesInfo isKindOfClass:NSDictionary]){
NSLog(@"DictionaryFound");
}
else{
NSLog(@"Array Found");
}

关于objective-c - plist 文件中的根项类型?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26417652/

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