mirror of
https://github.com/oxen-io/session-ios.git
synced 2023-12-13 21:30:14 +01:00
26 lines
683 B
Objective-C
26 lines
683 B
Objective-C
//
|
|
// Copyright (c) 2018 Open Whisper Systems. All rights reserved.
|
|
//
|
|
|
|
#import "OWSTableViewController.h"
|
|
|
|
@class CountryCodeViewController;
|
|
|
|
@protocol CountryCodeViewControllerDelegate <NSObject>
|
|
|
|
- (void)countryCodeViewController:(CountryCodeViewController *)vc
|
|
didSelectCountryCode:(NSString *)countryCode
|
|
countryName:(NSString *)countryName
|
|
callingCode:(NSString *)callingCode;
|
|
|
|
@end
|
|
|
|
#pragma mark -
|
|
|
|
@interface CountryCodeViewController : OWSTableViewController
|
|
|
|
@property (nonatomic, weak) id<CountryCodeViewControllerDelegate> countryCodeDelegate;
|
|
|
|
@property (nonatomic) BOOL isPresentedInNavigationController;
|
|
|
|
@end
|