Pregunta

Estoy tratando de usar un UISearch barra para poder encontrar todos los objetos de una persona concreta.Lo tengo configurado para que cada PFUser o el usuario tiene un objeto de nombre dentro del objeto principal de points.Cuando intento encontrar al usuario y no aparecen objetos, no aparece nada, pero en NSLogs obtengo toda la información.Creo que mi problema está en el cellForRowAtIndexPath, ¡Pero no sé por qué!

Primero consulto:

- (PFQuery *)queryForTable {
    PFQuery *query = [PFQuery queryWithClassName:@"points"];


    // The key of the PFObject to display in the label of the default cell style
    //self.textKey = @"opponent";

    // Uncomment the following line to specify the key of a PFFile on the PFObject to display in the imageView of the default cell style
    // self.imageKey = @"image";

    // Whether the built-in pull-to-refresh is enabled
    self.pullToRefreshEnabled = YES;

    // Whether the built-in pagination is enabled
    self.paginationEnabled = NO;

    // The number of objects to show per page
    self.objectsPerPage = 50;
  //where you set the username to the specific user to get only this user's post.
    // If no objects are loaded in memory, we look to the cache first to fill the table
    // and then subsequently do a query against the network.

    if (self.objects.count == 0) {
        query.cachePolicy = kPFCachePolicyCacheThenNetwork;
    }

    [query orderByDescending:@"createdAt"];

    return query;
}

Coloco mi barra:

-(void)viewDidAppear:(BOOL)animated{
self.searchBar = [[UISearchBar alloc] initWithFrame:CGRectMake(0, 0, self.view.frame.size.width, 44)];

self.tableView.tableHeaderView = self.searchBar;

self.searchController = [[UISearchDisplayController alloc] initWithSearchBar:self.searchBar contentsController:self];

self.searchController.searchResultsDataSource = self;
self.searchController.searchResultsDelegate = self;
self.searchController.delegate = self;


//CGPoint offset = CGPointMake(0, self.searchBar.frame.size.height);
//self.tableView.contentOffset = offset;

self.searchResults = [NSMutableArray array];
}

Filtrar los resultados:

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

        [self.searchResults removeAllObjects];

        PFQuery *query = [PFQuery queryWithClassName: @"points"];
        [query whereKeyExists:@"name"];  //this is based on whatever query you are trying to accomplish
        [query whereKeyExists:@"opponent"]; //this is based on whatever query you are trying to accomplish
        [query whereKey:@"name" containsString:searchTerm];

        NSArray *results  = [query findObjects];

        NSLog(@"%@", results);
        NSLog(@"%u", results.count);

        [self.searchResults addObjectsFromArray:results];
    }

-(BOOL)searchDisplayController:(UISearchDisplayController *)controller shouldReloadTableForSearchString:(NSString *)searchString {
    [self filterResults:searchString];
    return YES;
}
Counting The Objects:

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

    if (tableView == self.tableView) {
        //if (tableView == self.searchDisplayController.searchResultsTableView) {

        return self.objects.count;

    } else {

        return self.searchResults.count;

    }

}

- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
{
    return 110;
}

¡Intentando mostrarlo todo!:

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath object:(PFObject *)object {
    // If you want a custom cell, create a new subclass of PFTableViewCell, set the cell identifier in IB, then change this string to match
    // You can access any IBOutlets declared in the .h file from here and set the values accordingly
    // "Cell" is the default cell identifier in a new Master-Detail Project
    static NSString *CellIdentifier = @"celltag";

    UITableViewCell *cell = (UITableViewCell *)[tableView dequeueReusableCellWithIdentifier:CellIdentifier];
    if (cell == nil) {
        cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:CellIdentifier];
    }

    if (tableView != self.searchDisplayController.searchResultsTableView) {
        UILabel *game = (UILabel*) [cell viewWithTag:200];
        game.text = [NSString stringWithFormat:@"V.s %@", [object objectForKey:@"opponent"]];

        UILabel *points = (UILabel*) [cell viewWithTag:201];
        points.text = [NSString stringWithFormat:@"Points: %@G, %@A, %@Pts, %@, %@Hits, %@PPG",[object objectForKey:@"goals"], [object objectForKey:@"assists"], [object objectForKey:@"totalpoints"], [object objectForKey:@"plusminus"], [object objectForKey:@"hits"],[object objectForKey:@"ppg"]];

        UILabel *date = (UILabel*) [cell viewWithTag:250];
        date.text = [object objectForKey:@"date"];

        UILabel *name = (UILabel*) [cell viewWithTag:203];
        name.text = [object objectForKey:@"name"];
    }
    if ([tableView isEqual:self.searchDisplayController.searchResultsTableView]) {


        UILabel *game = (UILabel*) [cell viewWithTag:200];
        game.text = [NSString stringWithFormat:@"V.s %@", [object objectForKey:@"opponent"]];

        UILabel *points = (UILabel*) [cell viewWithTag:201];
        points.text = [NSString stringWithFormat:@"Points: %@G, %@A, %@Pts, %@, %@Hits, %@PPG",[object objectForKey:@"goals"], [object objectForKey:@"assists"], [object objectForKey:@"totalpoints"], [object objectForKey:@"plusminus"], [object objectForKey:@"hits"],[object objectForKey:@"ppg"]];

        UILabel *date = (UILabel*) [cell viewWithTag:250];
        date.text = [object objectForKey:@"date"];

        UILabel *name = (UILabel*) [cell viewWithTag:203];
        name.text = [object objectForKey:@"name"];



    }

    UILabel *game = (UILabel*) [cell viewWithTag:200];
    game.text = [NSString stringWithFormat:@"V.s %@", [object objectForKey:@"opponent"]];

    UILabel *points = (UILabel*) [cell viewWithTag:201];
    points.text = [NSString stringWithFormat:@"Points: %@G, %@A, %@Pts, %@, %@Hits, %@PPG",[object objectForKey:@"goals"], [object objectForKey:@"assists"], [object objectForKey:@"totalpoints"], [object objectForKey:@"plusminus"], [object objectForKey:@"hits"],[object objectForKey:@"ppg"]];

    UILabel *date = (UILabel*) [cell viewWithTag:250];
    date.text = [object objectForKey:@"date"];

    UILabel *name = (UILabel*) [cell viewWithTag:203];
    name.text = [object objectForKey:@"name"];


    return cell;
}
¿Fue útil?

Solución

También hay MUCHOS errores en su cellForRowAtIndexPath método.

(1) Contiene un condicional extraño.

a. Primero estás comparando punteros con el != operador:

if (tableView != self.searchDisplayController.searchResultsTableView)

Pero luego estás comparando objetos usando isEqual

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

Aunque cualquiera de los métodos es suficiente y este condicional debería funcionar técnicamente, es mejor ser coherente;y desde tableView en cellForRowAtIndexPath contiene una referencia a un puntero, usar los operadores == o != no solo es suficiente, sino más rápido.

b. Además, usar dos if de esa manera es una mala forma ya que estás teniendo if declaraciones para ambas opciones.En su lugar recomiendo usar una declaración if-else:

if (tableView != self.searchDisplayController.searchResultsTableView) {

   ...

} else {

    ...
}

return cell;

C. Su condicional, tal como está, es completamente innecesario.¡Tienes el mismo código en ambos bloques condicionales y luego nuevamente incluso DESPUÉS del bloque condicional!Entonces, tal como están las cosas, puede eliminar ambas declaraciones if, ya que el último código fuera de las declaraciones if es el único código que realmente se ejecuta.

(2) Pero tú hacer de hecho, necesita un condicional aunque el actual sea redundante.

El problema más importante de por qué la tabla no cambia al usar el código que ha especificado:

Ya que estás usando Parse cellForRowAtIndexPath método, los datos de la fila se completan con la información de - (PFQuery *)queryForTable, por lo que, tal como su código está escrito actualmente, los objetos se completarán con los resultados de esta consulta:

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

Puede usar el parámetro Parse PFObject devuelto por esta consulta cuando no esté buscando, pero use el objeto en el índice actual de la matriz self.searchResults, es decir. [self.searchResults objectAtIndex:indexPath.row], para cuando estás buscando, ej:

if (tableView != self.searchDisplayController.searchResultsTableView) {

    UILabel *game = (UILabel*) [cell viewWithTag:200];
    game.text = [NSString stringWithFormat:@"V.s %@", [object objectForKey:@"opponent"]];

    UILabel *points = (UILabel*) [cell viewWithTag:201];
    points.text = [NSString stringWithFormat:@"Points: %@G, %@A, %@Pts, %@, %@Hits, %@PPG",[object objectForKey:@"goals"], [object objectForKey:@"assists"], [object objectForKey:@"totalpoints"], [object objectForKey:@"plusminus"], [object objectForKey:@"hits"], [object objectForKey:@"ppg"]];

    UILabel *date = (UILabel*) [cell viewWithTag:250];
    date.text = [object objectForKey:@"date"];

    UILabel *name = (UILabel*) [cell viewWithTag:203];
    name.text = [object objectForKey:@"name"];

} else {

    PFObject *searchResult = [self.searchResults objectAtIndex:indexPath.row];

    UILabel *game = (UILabel*) [cell viewWithTag:200];
    game.text = [NSString stringWithFormat:@"V.s %@", [searchResult objectForKey:@"opponent"]];

    UILabel *points = (UILabel*) [cell viewWithTag:201];
    points.text = [NSString stringWithFormat:@"Points: %@G, %@A, %@Pts, %@, %@Hits, %@PPG",[searchResult objectForKey:@"goals"], [searchResult objectForKey:@"assists"], [searchResult objectForKey:@"totalpoints"], [searchResult objectForKey:@"plusminus"], [searchResult objectForKey:@"hits"], [return cell; objectForKey:@"ppg"]];

    UILabel *date = (UILabel*) [cell viewWithTag:250];
    date.text = [searchResult objectForKey:@"date"];

    UILabel *name = (UILabel*) [cell viewWithTag:203];
    name.text = [searchResult objectForKey:@"name"];
}

return cell;
Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top