-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBrowseTripsTableViewController.h
31 lines (23 loc) · 1.04 KB
/
BrowseTripsTableViewController.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
//
// BrowseTripsTableViewController.h
// CarPoolPrototype5
//
// Created by Anoop Balakrishnan Rema, Tanay Lakhani & Chirag Gajjar on 3/26/14.
// Copyright (c) 2014 Anoop Balakrishnan Rema, Tanay Lakhani & Chirag Gajjar. All rights reserved.
//
#import <UIKit/UIKit.h>
#import <Parse/Parse.h>
#import "BrowseTripsTableViewCell.h"
@interface BrowseTripsTableViewController : PFQueryTableViewController
@property (nonatomic, strong) NSArray *fromObjectArray;
@property (nonatomic, strong) NSArray *toObjectArray;
@property (nonatomic, strong) NSArray *dateObjectArray;
@property (nonatomic, strong) NSArray *descriptionObjectArray;
@property (nonatomic, strong) NSArray *seacrhfromObjectArray;
@property (nonatomic, strong) NSArray *seacrhtoObjectArray;
@property (nonatomic, strong) NSArray *seacrhdateObjectArray;
@property (nonatomic, strong) NSArray *seacrhdescriptionObjectArray;
@property (nonatomic, strong) NSArray *ObjectArray;
@property (weak, nonatomic) NSString *tripFromPlaceText;
@property (weak, nonatomic) NSString *tripToPlaceText;
@end