gpt4 book ai didi

objective-c - 如何获取NSAttributeDescription?

转载 作者:行者123 更新时间:2023-12-02 17:55:36 25 4
gpt4 key购买 nike

我有一个用户:NSManagedObject。获取其 userID 属性的 NSAttributeDescription 的最佳方法是什么?

最佳答案

假设您有权访问 User *user 实例,您可以执行以下操作:

NSAttributeDescription *userIDAttribute =
[[user.entity attributesByName] objectForKey:@"userID"];

如果您无权访问 User *user 对象,而只能访问 NSManagedObjectContext *context,您可以获得 NSEntityDescription对于用户:

NSEntityDescription *userEntity = [NSEntityDescription entityForName:@"User"
inManagedObjectContext:context];

关于objective-c - 如何获取NSAttributeDescription?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9012433/

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