当我修改 fetchRequest 的谓词时,AQGridView 出现问题

发布于 2024-11-07 19:49:55 字数 870 浏览 0 评论 0原文

我试图更改 NSFetchedResultsController 上的 fetchRequest 谓词,但是当我尝试从 aqgridview 重新加载数据时,没有显示任何单元格。

我的代码:

[NSFetchedResultsController deleteCacheWithName: nil];  

NSPredicate *predicate = [NSPredicate predicateWithFormat: @"colection = %@", newcolection ];
[fetchedResultsController.fetchRequest setPredicate:predicate];

NSError *error = nil;
if (![[self fetchedResultsController] performFetch:&error]) {
    NSLog(@"Unresolved error %@, %@", error, [error userInfo]);
    abort();
}

[comicGridView reloadData];

已解决:

好的,已解决。我必须更改 AQGridView.m 中的“setContentSize:(CGSize)newSize”方法:

From:

if (newSize.height < footerHeight + minimumHeight)

To:

if (newSize.height < minimumHeight)

由于minimumHeight已经包含footerHeight,之前,footerHeight被添加了两次。

I'm trying to change the fetchRequest's predicate on my NSFetchedResultsController, but when i try to reload the data from the aqgridview, none cell is displayed.

My code:

[NSFetchedResultsController deleteCacheWithName: nil];  

NSPredicate *predicate = [NSPredicate predicateWithFormat: @"colection = %@", newcolection ];
[fetchedResultsController.fetchRequest setPredicate:predicate];

NSError *error = nil;
if (![[self fetchedResultsController] performFetch:&error]) {
    NSLog(@"Unresolved error %@, %@", error, [error userInfo]);
    abort();
}

[comicGridView reloadData];

SOLVED:

OK, solved. I had to change the "setContentSize: (CGSize) newSize" method in AQGridView.m:

From:

if (newSize.height < footerHeight + minimumHeight)

To:

if (newSize.height < minimumHeight)

As minimumHeight already contains footerHeight, before, footerHeight is added in twice.

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

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

发布评论

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

评论(1

简单 2024-11-14 19:49:55

我已经解决了:回答问题。

I've solved: answer in the question.

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