session-ios/Signal/src/view controllers/CountryCodeViewController.h
2014-05-06 19:41:08 +02:00

23 lines
754 B
Objective-C

#import <UIKit/UIKit.h>
@class CountryCodeViewController;
@protocol CountryCodeViewControllerDelegate <NSObject>
- (void)countryCodeViewController:(CountryCodeViewController *)vc
didSelectCountryCode:(NSString *)code
forCountry:(NSString *)country;
- (void)countryCodeViewControllerDidCancel:(CountryCodeViewController *)vc;
@end
@interface CountryCodeViewController : UIViewController <UITableViewDelegate, UITableViewDataSource, UISearchBarDelegate>
@property (nonatomic, strong) IBOutlet UITableView *countryCodeTableView;
@property (nonatomic, strong) IBOutlet UISearchBar *searchBar;
@property (nonatomic, assign) id<CountryCodeViewControllerDelegate> delegate;
- (IBAction)cancelTapped:(id)sender;
@end