// // CountryModel.h // tongxin // // Created by WeiChaoZheng on 2018/6/25. // Copyright © 2018年 xTT. All rights reserved. // #import @interface CountryModel : NSObject /** 国家代码 (手机号 头部 eg: +86) */ @property (strong, nonatomic)NSString *country_code; /** 国家名称 */ @property (strong, nonatomic)NSString *country; /** 首字母 */ @property (strong, nonatomic)NSString *firstLetter; + (void)getObjsWithSuccess:(void (^)(NSMutableArray *arr))success failure:(void (^)(NSError *error))failure; /** 获取 String 的 拼音 首字母 @param country @return <#return value description#> */ + (NSString *)getFirstLetterFromString:(NSString*)country; @end