Created
June 14, 2014 23:09
-
-
Save zackbraksa/53116abbfe5a0da8271a to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// PickCityViewController.h | |
// | |
// Created by zakaria on 12/28/13. | |
// Copyright (c) 2013 Zakaria Braksa. All rights reserved. | |
// | |
#import <UIKit/UIKit.h> | |
@interface PickCityViewController : UIViewController<UITableViewDelegate, UITableViewDataSource,UISearchBarDelegate, UISearchDisplayDelegate>{ | |
NSArray* cities; | |
NSMutableArray* filteredCitiesArray; | |
} | |
@property (weak, nonatomic) IBOutlet UISearchBar *searchBar; | |
@property (weak, nonatomic) IBOutlet UITableView *tableView; | |
@end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment