Метод didSelectRowAtIndexPath в PFQueryTableViewController

Я создаю свое первое приложение, используя Parser с iOS. Теперь у меня есть только табличное представление с объектами Parse, но я не могу нажать на строку и открыть контроллер представления, чтобы показать детали выбранного объекта. Вот как я получаю объекты от Parse:

- (id)initWithCoder:(NSCoder *)aCoder {
    self = [super initWithCoder:aCoder];
    if (self) {
        // Customize the table

        // The className to query on
        self.parseClassName = @"cadenas";

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

        // 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 = YES;

        // The number of objects to show per page
        self.objectsPerPage = 25;
    }
    return self;
}

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


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

    [query orderByAscending:@"createdAt"];

    return query;
}

Это мой метод cellForRowAtIndexPath:

- (UITableViewCell *)tableView:(UITableView *)tableView
         cellForRowAtIndexPath:(NSIndexPath *)indexPath
                        object:(PFObject *)object {
    static NSString *CellIdentifier = @"Cell";

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

    // Configure the cell to show todo item with a priority at the bottom
    cell.textLabel.text = [object objectForKey:@"chain_name"];

    return cell;
}

И это метод didSelectRowAtIndexPath:

-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
    Detalle_ChainViewController *detailViewController =[self.storyboard instantiateViewControllerWithIdentifier:@"detalle_chain"];


    NSLog(@"CELL TAPPED");
    [self.navigationController pushViewController:detailViewController animated:YES];
}

Я безуспешно искал, как получить выбранный объект строки, чтобы передать его в контроллер подробного представления.

Любая помощь приветствуется.

1 ответ

Решение

Вы можете использовать массив для хранения ваших объектов и обновления их в cellForRowAtIndexPath

Например: (Я использовал здесь словарь, потому что количество результатов запроса было неопределенным; Operation это подкласс PFObject)

class HistoryViewController: PFQueryTableViewController {
    var operations: [Int: Operation] = [:]

    override init!(style: UITableViewStyle, className: String!) {
        super.init(style: style, className: className)
    }

    required init(coder aDecoder: NSCoder) {
        super.init(coder: aDecoder)
        parseClassName = "Operation";
        textKey = "title";
        pullToRefreshEnabled = true;
        paginationEnabled = true;
        objectsPerPage = 25;
    }

    override func queryForTable() -> PFQuery! {
        var query = Operation.query()
        query.whereKey("wallet", equalTo: wallet)
        query.addDescendingOrder("date")
        return query
    }    

    override func tableView(tableView: UITableView!, cellForRowAtIndexPath indexPath: NSIndexPath!, object: PFObject!) -> PFTableViewCell! {
        let operation = object as! Operation
        operations[indexPath.row] = operation
        var cell: PFTableViewCell = tableView.dequeueReusableCellWithIdentifier("cell") as! PFTableViewCell

        // set up your cell

        return cell
    }

    override func prepareForSegue(segue: UIStoryboardSegue, sender: AnyObject?) {
        let row = tableView.indexPathForSelectedRow()!.row
        (segue.destinationViewController as! OperationInfoViewController).loadOperation(operations[row]!)
    }
}
Другие вопросы по тегам