gpt4 book ai didi

iphone - 使用 iOS SDK 在运行时创建 plist?

转载 作者:可可西里 更新时间:2023-11-01 06:20:23 27 4
gpt4 key购买 nike

我是 iPhone 开发新手。我想知道是否有任何示例 Objective-C 代码可以通过从网络服务器获取数据在运行时创建 plist,我想知道数据的格式应该是什么,以便我可以在运行时轻松创建 plist。

最佳答案

非常简单 NSDictionary :

#define DOCUMENTS_PATH [NSSearchPathForDirectoriesInDomains(NSDocumentsDirectory, NSUserDomainMask, YES) objectAtIndex:0]

NSDictionary *myDictionary = [self parseWebResult];

// note that myDictionary must only contain values of string,
// int, bool, array (once again containing only the same types),
// and other primitive types (I believe NSDates are valid too).
[myDictionary writeToFile:[DOCUMENTS_PATH stringByAppendingPathComponent:@"myDict.plist"] atomically:YES];

// reading in the dictionary
myDictionary = [NSDictionary dictionaryWithContentsOfFile:[DOCUMENTS_PATH stringByAppendingPathComponent:@"myDict.plist"]];

关于iphone - 使用 iOS SDK 在运行时创建 plist?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8447341/

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