如果需要选择省市区的应用,则可以在网上下载如题plsit文件,add到工程后,读取plist文件转为字典或者数组,便可以了。
以下为自己写的方法,不复杂,用的本办法
//从plist中获取数组和字典
NSString *plistPath = [[NSBundle mainBundle] pathForResource:@"Provineces" ofType:@"plist"];
NSArray *array = [[NSArray alloc] initWithContentsOfFile:plistPath];
NSMutableDictionary *Pdic=[[NSMutableDictionary alloc]init];
for (NSDictionary *dic in array) {
NSMutableArray *Cary=[[NSMutableArray alloc]init];
NSString *provinece=[dic objec