0

uisearchbar を使用して parse.com でオブジェクトを検索し、「findObjectsInBackgroundWithBlock」を実行しようとしています。出力では正しい結果が得られますが、テーブルには表示されません。

以前はブロックなしでこれを行っていましたが、コードは機能し、正しい結果が得られましたが、動きが非常に遅く、「警告: 長時間実行される解析操作がメインスレッドで実行されています」という警告が表示されました。

以前は次のコードを使用していました。

- (void)filterResults:(NSString *)searchTerm {

[self.searchResults removeAllObjects];

PFQuery *query = [PFQuery queryWithClassName: @"Items"];
[query whereKeyExists:@"itemName"];  
[query whereKeyExists:@"itemDescription"]; 
[query whereKey:@"tags" containsString:searchTerm];

NSArray *results  = [query findObjects];
NSLog(@"%@", results);
NSLog(@"%u", results.count);

[self.searchResults addObjectsFromArray:results];

}

そのため、代わりに findObjectsInBackgroundWithBlock を試しています。これまでブロックを扱ったことがないので、ここで助けが必要です。新しいコードは次のとおりです。

- (void)filterResults:(NSString *)searchTerm {

[self.searchResults removeAllObjects];

PFQuery *query = [PFQuery queryWithClassName: @"Items"];

[query whereKey:@"tags" containsString:searchTerm];

[query findObjectsInBackgroundWithBlock:^(NSArray *objects, NSError *error) {

    NSLog(@"%@", objects);
    NSLog(@"%u", objects.count);
[self.searchResults addObjectsFromArray:objects];}];

これが私のコードの一部です

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {

                      if (tableView == self.tableView) {


                          return self.objects.count;

                      } else {

                          return self.searchResults.count;

                      }


                  }

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

                      NSString *uniqueIdentifier = @"cell";
                      HomeCell *cell = nil;

                      cell = (HomeCell *) [self.tableView dequeueReusableCellWithIdentifier:uniqueIdentifier];

                      if (!cell) {
                          NSArray *topLevelObjects = [[NSBundle mainBundle] loadNibNamed:@"HomeCell" owner:nil options:nil];

                          for (id currentObject in topLevelObjects)
                          {
                              if([currentObject isKindOfClass:[HomeCell class]])
                              {
                                  cell = (HomeCell *)currentObject;
                                  break;
                              }
                          }
                      }
if (tableView != self.searchDisplayController.searchResultsTableView) {
    NSString *itemName = [object objectForKey:@"itemName"];
    NSString *itemDescription = [object objectForKey:@"itemDescription"];
    //cell.textLabel.text = last;


    cell.cellTitleLabel.text = itemName;
    cell.descriptionLabel.text = itemDescription;

    cell.priceLabel.text = [object objectForKey:@"price"];

    PFFile *thumbnail = [object objectForKey:@"imageFile"];
    PFImageView *thumbnailImageView = cell.imageFile;
    thumbnailImageView.image = [UIImage imageNamed:@"Facebook @2x.png"];
    thumbnailImageView.file = thumbnail;
    [thumbnailImageView loadInBackground];







}
if ([tableView isEqual:self.searchDisplayController.searchResultsTableView]) {

    PFObject *obj2 = [self.searchResults objectAtIndex:indexPath.row];
    PFQuery *query = [PFQuery queryWithClassName:@"Items"];
    PFObject *searchedItems = [query getObjectWithId:obj2.objectId];
    NSString *itemName = [searchedItems objectForKey:@"itemName"];
    NSString *itemDescription = [searchedItems objectForKey:@"itemDescription"];


    cell.cellTitleLabel.text = itemName;
    cell.descriptionLabel.text = itemDescription;

    cell.priceLabel.text = [searchedItems objectForKey:@"itemName"];
    PFFile *thumbnail = [searchedItems objectForKey:@"imageFile"];
    PFImageView *thumbnailImageView = cell.imageFile;
    thumbnailImageView.image = [UIImage imageNamed:@"Facebook @2x.png"];
    thumbnailImageView.file = thumbnail;
    [thumbnailImageView loadInBackground];
}




return cell;

どんな助けでも大歓迎です、乾杯

4

2 に答える 2

0

セルを作成するときに、検索テーブル ビューと通常のテーブル ビューを区別します。

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath object:(PFObject *)object {
    if (tableView = self.tableView) {
        //Configure your cell normally
    }
    else {
        //Configure your cells using
        cell.someAttribute = self.searchResults[indexPath.row].someAttribute;
    }
于 2013-09-01T12:27:12.203 に答える