Objective C 类到 NSDictionary

发布于 2024-12-14 03:37:05 字数 932 浏览 3 评论 0原文

我将 NSDictionary 发布到 JSON Web 服务,以将数据保存回本地数据库。将 Objective C 类转换为 NSDictionaries 的最佳方法是什么?

这是我当前的代码,除了编写更通用的版本之外,这是最好的方法/唯一的方法吗?包括 对于苹果来说可以吗?

 - (NSDictionary*)dictionaryFromContact {

        Class contactClass = [self class];
        u_int count;

        objc_property_t *properties = class_copyPropertyList(contactClass, &count);

        NSMutableDictionary *dict = [[NSMutableDictionary alloc] initWithCapacity:count];

        for (int i = 0; i<count; i++) {
            NSString *str = [NSString stringWithCString:property_getName(properties[i]) 
                                               encoding:NSUTF8StringEncoding];

            //Set the dicationary values from our properties
            [dict setValue:[self valueForKey:str] forKey:str];
        }
        free(properties);

        return [dict autorelease];
    }

谢谢!

Iam posting a NSDictionary to a JSON webservice for saving my data back to a local database. Whats the best way of converting Objective C classes to NSDictionaries?

Here is my current code, except from writing a more generic version, is this the best way/only to do this? And including <obj/runtime.h> is OK with apple?

 - (NSDictionary*)dictionaryFromContact {

        Class contactClass = [self class];
        u_int count;

        objc_property_t *properties = class_copyPropertyList(contactClass, &count);

        NSMutableDictionary *dict = [[NSMutableDictionary alloc] initWithCapacity:count];

        for (int i = 0; i<count; i++) {
            NSString *str = [NSString stringWithCString:property_getName(properties[i]) 
                                               encoding:NSUTF8StringEncoding];

            //Set the dicationary values from our properties
            [dict setValue:[self valueForKey:str] forKey:str];
        }
        free(properties);

        return [dict autorelease];
    }

Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

夜司空 2024-12-21 03:37:05

class_copyPropertyList 是合法的。您可以考虑使用 dictionaryWithValuesForKeys: 作为快捷方式。

如果您将 Core Data 用于本地数据库,则应使用 attributesByNamerelationshipsByNamepropertiesByName

class_copyPropertyList is legit. You may consider dictionaryWithValuesForKeys: for shortcut.

If you use Core Data for local database, you should use attributesByName and relationshipsByName, or propertiesByName.

厌倦 2024-12-21 03:37:05

查看 对象映射 功能/restkit.org" rel="nofollow">RestKit,它可能会满足您的需要。

Have a look at the Object Mapping feature of RestKit, it might do what you need.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文