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

//
// PPAddressModel.m
// PPAddressBook
//
// Created by AndyPang on 16/8/17.
// Copyright © 2016AndyPang. All rights reserved.
//
#import "PPPersonModel.h"
@implementation PPPersonModel
- (NSMutableArray *)mobileArray
{
if(!_mobileArray)
{
_mobileArray = [NSMutableArray array];
}
return _mobileArray;
}
@end