BDVCountryNameAndCode手机号码前缀控件
BDVCountryNameAndCode 是简单建议一个手机号码前缀的控件,无需询问地理位置服务就能访问用户城市。
如何使用
将 BDVCountryNameAndCode.h 和 BDVCountryNameAndCode.m 添加到项目。
获取用户当前语言环境的前缀:
BDVCountryNameAndCode *BDVCountryNameAndCode = [[BDVCountryNameAndCode alloc] init]; NSString *prefixOfCurrentLocale = [BDVCountryNameAndCode prefixForCurrentLocale]; // Returns "+1" for Canada
以相同的方式获取当前国家的名称:
BDVCountryNameAndCode *BDVCountryNameAndCode = [[BDVCountryNameAndCode alloc] init]; NSString *nameOfCurrentLocale = [BDVCountryNameAndCode countryNameForCurrentLocale]; // Returns "Canada"
获取用户当前语言环境的图像标志:
BDVCountryNameAndCode *BDVCountryNameAndCode = [[BDVCountryNameAndCode alloc] init]; UIImage *flagOfCurrentLocale = [BDVCountryNameAndCode countryFlagForCurrentLocale]; // Returns UIImage
评论