簡體   English   中英

如何在iOS的UITableVIew中顯示Parse的PFUser數組?

[英]How can I show a PFUser array of Parse in a UITableVIew in iOS?

到目前為止,我已經嘗試過以下代碼:

PFGeoPoint * myGeoPoint = [PFUser currentUser][@"coordinates"]; // Your geoPoint
PFQuery *query = [PFUser query];
[query includeKey:@"User"];
[query whereKey:@"coordinates" nearGeoPoint:myGeoPoint withinMiles:radiusInMiles];
[query findObjectsInBackgroundWithBlock:^(NSArray *objects, NSError *error) {
    if(!error){
for (PFUser *object in objects){
            users = (NSArray*)[object ObjectForKey:@"User"];
        }
        [self.tableView reloadData];
    }

}     

}];
- (PFUser*) objectAtIndexPath:(NSIndexPath*)indexPath {
PFUser *object = [PFUser objectWithClassName: @"User"];
[object setObject:[users objectAtIndex:indexPath.row] forKey:@"User"];
return object;
}
// Use myObjects for numberOfRowsInSection:

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:    (NSInteger)section {
return users.count;
}
//Use your custom object for cellForRowAtIndexPath:

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath*)indexPath object:(PFUser *)object {
static NSString *simpleTableIdentifier = @"cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:simpleTableIdentifier];

if (cell == nil) {
    cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:simpleTableIdentifier];
}

// Configure the cell using object
UILabel *reviewLabel = (UILabel *)[cell viewWithTag:10];
reviewLabel.text = [object objectForKey:object.username];
PFFile *userImageFile = object[@"profilePic"];
[userImageFile getDataInBackgroundWithBlock:^(NSData *imageData, NSError *error) {
    if (!error) {
        if (imageData != nil)
            cell.imageView.image = [UIImage imageWithData:imageData];
        else cell.imageView.image= [UIImage imageNamed:@"defaultPerson"];
    }
}];

}
-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
  {

  SMChatViewController *chatController = [SMChatViewController alloc];

// [chatController initWithPhoto:image];

    [self presentModalViewController:chatController animated:YES];

}

在這段代碼中,我將PFUsers數組檢索為“對象”。將對象數組保存給用戶時,它返回為空。 因此,有人可以建議我一些如何在tableView中設置用戶名和profilepic嗎?

記錄對象的輸出

我猜查詢不正確。 嘗試這個:

PFGeoPoint * myGeoPoint = [PFUser currentUser][@"coordinates"]; // Your geoPoint
PFQuery *query = [PFQuery queryWithObject:@"_User"];
NSArray *userList = [NSArray new];

[query whereKey:@"coordinates" nearGeoPoint:myGeoPoint withinMiles:radiusInMiles];
[query findObjectsInBackgroundWithBlock:^(NSArray *objects, NSError *error) {
    if(!error){
         userList = objects;
        [self.tableView reloadData];
    }

}];

在您的代碼中,您要詢問“用戶”對象,然后從該對象中獲取“用戶”字段。

- (UITableViewCell *)tableView:(UITableView *)tableView     cellForRowAtIndexPath:(NSIndexPath*)indexPath {

static NSString *simpleTableIdentifier = @"cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:simpleTableIdentifier];

if (cell == nil) {
    cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:simpleTableIdentifier];
}

   PFUser *user = (PFUser*)[users objectAtIndex:indexPath.row];

cell.textLabel.text=user.username;

PFFile *userImageFile = user[@"profilePic"];
[userImageFile getDataInBackgroundWithBlock:^(NSData *imageData, NSError *error) {
    if (!error) {
if (imageData != nil)
            cell.imageView.image = [UIImage imageWithData:imageData];
        else cell.imageView.image= [UIImage imageNamed:@"defaultPerson.png"];
    }
}];
return cell;
}

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM