省市区代码

来源:互联网 发布:中国网络资讯台李学科 编辑:程序博客网 时间:2024/05/29 04:07
- (NSMutableArray*)getAddressDataSource
{
    NSString *dataPath=[NSHomeDirectory() stringByAppendingString:@"/Documents/newcity.txt"];
    NSData *data = [[NSData alloc] initWithContentsOfFile:dataPath];
    
    TTDPRINT(@"========%ld",[data length]);
    if([data length]<1000){
        
        dataPath= [[NSBundle mainBundle] pathForResource:@"newcity" ofType:@"txt"];
        data = [[NSData alloc] initWithContentsOfFile:dataPath];//914843
        
        
    }
    
    NSKeyedUnarchiver *unarchiver = [[NSKeyedUnarchiver alloc] initForReadingWithData:data];
    NSMutableArray *array = [unarchiver decodeObjectForKey:@"user"];
    TTDPRINT(@"===地区array=====%@",array);
    
    return array;
    
    
    
    
}
0 0
原创粉丝点击