菜鸟教程小白 发表于 2022-12-12 11:58:16

iOS:我可以将托管对象存储在字典中吗?


                                            <p><p>对于我的 UINotifications,我想在 userInfo 中存储一个唯一键。因此,在我的应用中,您只能为每个 friend 设置一个提醒。所以我想将我的 friend 对象存储为 key 。那可能吗?还是只保存了一个引用,以后无法进行匹配?因为 friend 的名字可能会改变所以我不知道还有什么可以保存在那里以清楚匹配......</p>

<pre><code>UILocalNotification* localNotification = [ init];
NSDictionary *infoDict = ;
            localNotification.userInfo = infoDict;
</code></pre></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>您可以使用 friend 的 NSManagedObjectID 实例作为键,因为它是唯一的,您还可以从商店中获取具有该 objectID 的 NSManagedObject 并在以后进行您喜欢的任何类型的比较。 ObjectID 就像主键一样,所以它是唯一的。</p>

<pre><code>-(NSManagedObject *)existingObjectWithID:(NSManagedObjectID *)objectID
                                 error:(NSError **)error
Fetches the object from the store that has that ID, or nil if it doesn&#39;t exist.
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于iOS:我可以将托管对象存储在字典中吗?,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/26206389/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/26206389/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: iOS:我可以将托管对象存储在字典中吗?