mirror of
https://github.com/danog/Telegram.git
synced 2024-12-04 02:17:51 +01:00
35 lines
819 B
Objective-C
35 lines
819 B
Objective-C
#import "TGContactModel.h"
|
|
#import "TGPhoneUtils.h"
|
|
|
|
@implementation TGPhoneNumberModel
|
|
|
|
- (instancetype)initWithPhoneNumber:(NSString *)phoneNumber label:(NSString *)label
|
|
{
|
|
self = [super init];
|
|
if (self != nil)
|
|
{
|
|
_phoneNumber = [TGPhoneUtils cleanInternationalPhone:phoneNumber forceInternational:false];
|
|
_displayPhoneNumber = [TGPhoneUtils formatPhone:_phoneNumber forceInternational:false];
|
|
_label = label;
|
|
}
|
|
return self;
|
|
}
|
|
|
|
@end
|
|
|
|
@implementation TGContactModel
|
|
|
|
- (instancetype)initWithFirstName:(NSString *)firstName lastName:(NSString *)lastName phoneNumbers:(NSArray *)phoneNumbers
|
|
{
|
|
self = [super init];
|
|
if (self != nil)
|
|
{
|
|
_firstName = firstName;
|
|
_lastName = lastName;
|
|
_phoneNumbers = phoneNumbers;
|
|
}
|
|
return self;
|
|
}
|
|
|
|
@end
|