DKCountryPicker 0.0.2

DKCountryPicker 0.0.2

测试已测试
语言语言 Objective-CObjective C
许可 MIT
发布最后发布2014年12月

未声明的维护。




  • 作者:
  • David Kasper

DKPhonePicker

令人惊讶的是找不到这样的,所以我制作了一个简单的控制来搜索/选择国家。特别适用于在注册表中使用,您需要为电话号码或邮政地址选择国家。

示例

-(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];
}

截图

ScreenShot