-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathStopScheduleViewController.h
More file actions
29 lines (22 loc) · 951 Bytes
/
StopScheduleViewController.h
File metadata and controls
29 lines (22 loc) · 951 Bytes
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
//
// StopScheduleViewController.h
// BusStop
//
// Created by Chris Woodard on 4/13/13.
// Copyright (c) 2013 0xC0ffee. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "ScheduleRouteChooserViewController.h"
#import "Stop.h"
@interface StopScheduleViewController : UIViewController <UITableViewDataSource, UITableViewDelegate, ScheduleRouteChooserDelegate>
@property (nonatomic, strong) Stop *busStop;
@property (nonatomic, strong) NSString *currentRouteId;
@property (nonatomic, strong) NSMutableDictionary *allEntries;
@property (nonatomic, strong) NSMutableArray *visibleEntries;
@property (nonatomic, strong) NSMutableDictionary *routesForStop;
@property (nonatomic, weak) IBOutlet UILabel *stopNameLabel;
@property (nonatomic, weak) IBOutlet UILabel *currentTimeLabel;
@property (nonatomic, weak) IBOutlet UITableView *slotsTable;
-(void)didSelectRouteWithId:(NSString *)routeId;
-(IBAction)routerFilterTapped:(id)sender;
@end