菜鸟教程小白 发表于 2022-12-12 15:41:20

ios - Realm token 有什么用?


                                            <p><p>初始化Realm通知时,需要设置token:</p>

<pre><code>// Observe Realm Notifications
__weak typeof(self) weakSelf = self;
RLMRealm *realm = ;
self.token = [realm addNotificationBlock:^(NSString *note, RLMRealm * realm) {
    ;
}];
</code></pre>

<p>我不是 100% 清楚这有什么好处。是要保留对self的引用吗?</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>我找到了可能的答案:需要 token 才能从 View 中删除通知。通知似乎没有提及它。</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios -Realmtoken 有什么用?,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/31132757/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/31132757/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - Realm token 有什么用?