iphone - 从 fetchedResultsController fetchedObjects 中移除一个对象
<p><p>是否可以从 fetchedResultsController fetchedObjects 中移除对象?</p>
<p>例如我有以下代码:</p>
<pre><code> NSPredicate *predicate = ;
for (int i = 0; i < ; i++){
Author *author = ;
NSSet *filteredQuotes = ;
if ( > 0){
author.quotes = filteredQuotes;
} else {
//remove this author from the fetchedObjects array
}
}
</code></pre>
<p>我该怎么做?</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>从数据存储中删除对象:</p>
<pre><code>;
;
;
;
</code></pre>
<p>要从获取的结果 Controller 数组中删除对象,您需要更改谓词。确保禁用缓存(或更改缓存名称)以使其正常工作。 </p></p>
<p style="font-size: 20px;">关于iphone - 从 fetchedResultsController fetchedObjects 中移除一个对象,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/15828983/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/15828983/
</a>
</p>
页:
[1]