令人惊讶的是找不到这样的,所以我制作了一个简单的控制来搜索/选择国家。特别适用于在注册表中使用,您需要为电话号码或邮政地址选择国家。
-(IBAction)showPicker:(id)sender {
DKCountryPickerViewController *picker = [[DKCountryPickerViewController alloc] initWithStyle:UITableViewStylePlain];
picker.pickerDelegate = self;
[self presentViewController:picker animated:YES completion:nil];
}
-(void)countryPickerValueSelected:(NSDictionary *)userInfo {
NSLog(@"%@",userInfo[@"name"]);
[self dismissViewControllerAnimated:YES completion:nil];
}