Skip to content

Instantly share code, notes, and snippets.

@zackbraksa
Created June 14, 2014 23:09
Show Gist options
  • Save zackbraksa/53116abbfe5a0da8271a to your computer and use it in GitHub Desktop.
Save zackbraksa/53116abbfe5a0da8271a to your computer and use it in GitHub Desktop.
//
// 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