-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathStationsListViewController.m
More file actions
41 lines (30 loc) · 939 Bytes
/
StationsListViewController.m
File metadata and controls
41 lines (30 loc) · 939 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
30
31
32
33
34
35
36
37
38
39
40
41
//
// StationsListViewController.m
// CodeChallenge3
//
// Created by Vik Denic on 10/16/14.
// Copyright (c) 2014 Mobile Makers. All rights reserved.
//
#import "StationsListViewController.h"
@interface StationsListViewController () <UITabBarDelegate, UITableViewDataSource>
@property (strong, nonatomic) IBOutlet UITableView *tableView;
@property (strong, nonatomic) IBOutlet UISearchBar *searchBar;
@end
@implementation StationsListViewController
- (void)viewDidLoad {
[super viewDidLoad];
// Do any additional setup after loading the view.
}
#pragma mark - UITableView
-(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
// TODO:
return 1;
}
-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"Cell"];
// TODO:
return cell;
}
@end