// // Copyright (c) 2017 Open Whisper Systems. All rights reserved. // #import @class CountryCodeViewController; @protocol CountryCodeViewControllerDelegate - (void)countryCodeViewController:(CountryCodeViewController *)vc didSelectCountryCode:(NSString *)countryCode countryName:(NSString *)countryName callingCode:(NSString *)callingCode; @end @interface CountryCodeViewController : UIViewController @property (nonatomic) IBOutlet UITableView *countryCodeTableView; @property (nonatomic) IBOutlet UISearchBar *searchBar; @property (nonatomic, weak) id delegate; @property (nonatomic) NSString *countryCodeSelected; @property (nonatomic) NSString *callingCodeSelected; @property (nonatomic) NSString *countryNameSelected; @property (nonatomic) BOOL shouldDismissWithoutSegue; @end