mirror of https://github.com/oxen-io/session-ios
				
				
				
			
			You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
	
	
		
			27 lines
		
	
	
		
			683 B
		
	
	
	
		
			C
		
	
		
		
			
		
	
	
			27 lines
		
	
	
		
			683 B
		
	
	
	
		
			C
		
	
| 
											9 years ago
										 | //
 | ||
| 
											8 years ago
										 | //  Copyright (c) 2018 Open Whisper Systems. All rights reserved.
 | ||
| 
											9 years ago
										 | //
 | ||
|  | 
 | ||
| 
											9 years ago
										 | #import "OWSTableViewController.h"
 | ||
| 
											12 years ago
										 | 
 | ||
|  | @class CountryCodeViewController; | ||
|  | 
 | ||
|  | @protocol CountryCodeViewControllerDelegate <NSObject> | ||
|  | 
 | ||
|  | - (void)countryCodeViewController:(CountryCodeViewController *)vc | ||
| 
											9 years ago
										 |              didSelectCountryCode:(NSString *)countryCode | ||
|  |                       countryName:(NSString *)countryName | ||
|  |                       callingCode:(NSString *)callingCode; | ||
| 
											12 years ago
										 | 
 | ||
|  | @end | ||
|  | 
 | ||
| 
											9 years ago
										 | #pragma mark -
 | ||
|  | 
 | ||
| 
											9 years ago
										 | @interface CountryCodeViewController : OWSTableViewController | ||
| 
											12 years ago
										 | 
 | ||
| 
											9 years ago
										 | @property (nonatomic, weak) id<CountryCodeViewControllerDelegate> countryCodeDelegate; | ||
| 
											12 years ago
										 | 
 | ||
| 
											8 years ago
										 | @property (nonatomic) BOOL isPresentedInNavigationController; | ||
|  | 
 | ||
| 
											12 years ago
										 | @end |