You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
347 B
23 lines
347 B
1 year ago
|
//
|
||
|
// PPAddressModel.m
|
||
|
// PPAddressBook
|
||
|
//
|
||
|
// Created by AndyPang on 16/8/17.
|
||
|
// Copyright © 2016年 AndyPang. All rights reserved.
|
||
|
//
|
||
|
|
||
|
#import "PPPersonModel.h"
|
||
|
|
||
|
@implementation PPPersonModel
|
||
|
|
||
|
- (NSMutableArray *)mobileArray
|
||
|
{
|
||
|
if(!_mobileArray)
|
||
|
{
|
||
|
_mobileArray = [NSMutableArray array];
|
||
|
}
|
||
|
return _mobileArray;
|
||
|
}
|
||
|
|
||
|
@end
|