国家代码选择器,支持中英文、国旗
1.导入XYCountryCode类
##pod
pod 'XYCountryCode'
三行代码集成国家区号选择功能 类型
XYCountryCodeShowTypeNone //默认为列表
XYCountryCodeShowTypePicker //picker模式
代码如下:
XYCountryCodeViewController *vc = [[XYCountryCodeViewController alloc] initWithShowType:XYCountryCodeShowTypePicker];
[vc showViewController:self];
[vc setChooseCodeRespose:^(NSString *code) {
self.label.text = code;
}];
##-----------------------------------------
------------------by xllyll----------------