- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在运行一个 Parse 程序,该程序获取数据并使用“findObjectsInBackgroundWithBlock”从中创建对象。完成后,我更新 self ,然后调用“[self.tableView setNeedsDisplay]”,但我的显示器上没有任何变化,也没有显示新项目。难道我做错了什么?我该如何解决?
-(void)pullDown{
NSLog(@"Began PullDown");
NSMutableArray *bugs = [NSMutableArray arrayWithObjects: nil];
//NSMutableArray *bugs = [NSMutableArray arrayWithObjects: nil];
NSLog(@"Journal POSTS");
PFQuery *queryJournal = [PFQuery queryWithClassName:@"Post"];
[queryJournal whereKey:@"user" equalTo:[PFUser currentUser]];
NSLog(@"WHEN ARE YOU CALLED?");
[queryJournal findObjectsInBackgroundWithBlock:^(NSArray *posts, NSError *error) {
if (!error) {
// The find succeeded.
//NSLog(@"Successfully retrieved %@ Posts.", posts);
// Do something with the found objects
for (PFObject *object in posts) {
int rating = object[@"Rating"];
NSLog(@"RATING object: %@; int: %i", object[@"Rating"], rating);
MSJournalerDoc *post = [[MSJournalerDoc alloc] initWithTitle:object[@"Title"] rating:rating thumbImage:object[@"imageFile"] fullImage:object[@"imageFile"]];
[bugs addObject:post];
}
NSLog(@"HELL YA");
NSLog(@"THE LIST: %@", bugs);
self.bugs = bugs;
NSLog(@"END OF LOOOOOOOOOOOOOOOPS %lu", bugs.count);
[self.tableView setNeedsDisplay];
NSLog(@"MOAR");
} else {
// Log details of the failure
NSLog(@"Error: %@ %@", error, [error userInfo]);
}
}];
}
- (void)viewDidLoad
{
[super viewDidLoad];
// Do any additional setup after loading the view, typically from a nib.
if ([PFUser currentUser]) {
NSLog(@"CURRENT USER");
[self pullDown];
NSLog(@"POST CURRENT USER");
}
else{
[self createUser];
[self createBug];
}
self.navigationItem.leftBarButtonItem = self.editButtonItem;
UIBarButtonItem *addButton = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemAdd target:self action:@selector(insertNewObject:)];
self.navigationItem.rightBarButtonItem = addButton;
//Change the Title
self.title = @"Posts";
self.navigationItem.leftBarButtonItem = self.editButtonItem;
self.navigationItem.rightBarButtonItem = [[UIBarButtonItem alloc]
initWithBarButtonSystemItem:UIBarButtonSystemItemAdd
target:self action:@selector(addTapped:)];
NSLog(@"Finished ViewDidLoad");
}
最佳答案
您有几个不同的问题。
首先,在 View 上调用 setNeedsDisplay
会导致它被重绘,但这对于 TableView 来说还不够,因为它的数据都没有更新。相反,您需要调用 reloadData
来更新数据并自动触发重绘。
其次,您尝试使用解析返回的图像,但解析从不返回图像(至少不直接返回)。因此,访问 object[@"imageFile"]
会返回一个 PFFile
,而不是 UIImage
。您需要先调用getDataInBackgroundWithBlock:
获取图片数据,然后才能使用。
关于IOS FindObjectsInBackgroundWithBlock -> setNeedsDisplay,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22890380/
我正在运行一个 Parse 程序,该程序获取数据并使用“findObjectsInBackgroundWithBlock”从中创建对象。完成后,我更新 self ,然后调用“[self.tableVi
我正在尝试使用 uisearchbar 并执行“findObjectsInBackgroundWithBlock”在 parse.com 上搜索我的对象。我在我的输出中得到了正确的结果,但它们没有出现
我的请求总是返回nil var query : PFQuery = PFUser.query()! query.whereKey("username", equalTo: sea
我当前的问题是我的 -findObjectsInBackgroundWithBlock 方法对于成功的查询返回 nil 。 我的自定义类是一个 JSON,它是使用 {results: [{}]} 语法
let userQuery = PFUser.query() userQuery!.whereKey("username", equalTo: userUsername) userQuery!.fin
编辑:我更改了问题标题。我将函数更改为 findObjectsInBackgroundWithBlock - override func viewDidAppear(animated: Bool) {
我的代码如下所示,我不明白的是为什么Void in之后的代码永远不会运行?我确实尝试过调试,但似乎 Block 永远不会被执行。 顺便说一句,查询将返回空。 let query = PFQuery(c
这是我的 ViewDidLoad 中的代码 我正在尝试在我拥有未执行的 NSLog 的代码部分执行某些操作。我没能找到有同样问题的人? 我哪里错了?提前致谢! PFRelation *relation
我直接从文档中复制了 PFQuery 的示例,将我的字段和类名称放入其中,但它从未命中 completionBlock。 - (void) loadMyWindows { PFQuery *q
我正在尝试将查询结果传递到变量数组 var petitions = [PFObject] = [] 然后返回结果。我如何在 Swift 中做到这一点? func getPetitions(employ
所以我在让所有用户从解析到我的应用程序时遇到了这个错误: Cannot invoke 'findObjectsInBackgroundWithBlock' with an argument list
在我的解析表中有列。位置和国家。如果是真的,数据将加载到应用程序中。但问题是,它永远不会参与findObjectsInBackgroundWithBlock连wherekeys都错了。总是打印出 Th
我正在尝试使用这段代码获取一堆行 var query = PFQuery(className:"Test") query.findObjectsInBackgroundWithBlock {
我正在使用 Parse 从数据库中获取数据。当 block - findObjectsInBackgroundWithBlock 被调用时,一个数组被传递。由于我只收到一行数据,因此它们都出现在数组的
我是 ios 开发的新手,我最近发现了一个使用解析后端构建像 ios 应用程序这样的高音扬声器的教程。我当前的设置是带有 swift 2.0 的 Xcode 7.1,本教程是在旧版本的 swift 上
我这里有一个带有 parse.com 代码的 swift 2 问题是代码在//1 之前打印//2这造成了一个问题,我无法在其他方法或其他地方使用该数组这是代码 var myStudent:Stude
我有一个函数,如下所示,它应该从我的解析数据库中检索所有“Food”对象。然而,虽然实际数据库当前有 249 个对象,但该 block 仅检索 100 个对象。 - (void) addFoodsTo
我的代码中有这样的结构: for (METMeetingEntity *e in self.meetingList) { PFQuery *query = [PFUser qu
我正在使用 parse.com 和 Swift 2。 我需要在 for 循环中从解析中找到对象。问题是,findObjectsInBackgroundWithBlock 是异步的,所以当 query.
我正在尝试开发 iOS9.1 的操作扩展,该扩展应该查询 Parse 以获得一些数据。 我已在扩展中添加、启用并测试了 Parse,并且成功创建了测试对象并检查当前用户。 我无法获取 Parse 查询
我是一名优秀的程序员,十分优秀!