三行代码集成国家区号选择功能
功能执行效果如图:
开源链接:
https://github.com/qxuewei/XWCountryCode
用法:
1.导入XWCountryCode类
2.在须要选择国家代码的事件中
XWCountryCodeController *CountryCodeVC = [[XWCountryCodeController alloc] init];
//CountryCodeVC.deleagete = self;
//block
[CountryCodeVC toReturnCountryCode:^(NSString *countryCodeStr) {
//在此处实现终于选择后的界面处理
[self.countryCodeLB setText:countryCodeStr];
}];
[self presentViewController:CountryCodeVC animated:YES completion:nil];
界面传值提供了代理和block两种方式,自由选择