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.
session-ios/SignalMessaging/contacts/CountryCodeViewController.h

27 lines
683 B
C

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