// // Copyright (c) 2018 Open Whisper Systems. All rights reserved. // #import "OWSTableViewController.h" @class CountryCodeViewController; @protocol CountryCodeViewControllerDelegate - (void)countryCodeViewController:(CountryCodeViewController *)vc didSelectCountryCode:(NSString *)countryCode countryName:(NSString *)countryName callingCode:(NSString *)callingCode; @end #pragma mark - @interface CountryCodeViewController : OWSTableViewController @property (nonatomic, weak) id countryCodeDelegate; @property (nonatomic) BOOL isPresentedInNavigationController; @end