1
0
mirror of https://github.com/danog/Telegram.git synced 2024-12-04 10:27:46 +01:00
Telegram/Share/TGContactModel.m

35 lines
819 B
Mathematica
Raw Normal View History

2016-02-25 01:03:51 +01:00
#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