session-ios/Signal/src/views/CountryCodeTableViewCell.h

11 lines
302 B
Objective-C

#import <UIKit/UIKit.h>
@interface CountryCodeTableViewCell : UITableViewCell
@property (nonatomic, strong) IBOutlet UILabel *countryCodeLabel;
@property (nonatomic, strong) IBOutlet UILabel *countryNameLabel;
- (void)configureWithCountryCode:(NSString *)code andCountryName:(NSString *)name;
@end