CountryInfoManager.h 599 B

1234567891011121314151617181920212223
  1. //
  2. // CountryInfoManager.h
  3. // UUT
  4. //
  5. // Created by zhuge on 14/9/14.
  6. // Copyright (c) 2014年 com.woodenperon. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. #import "CountryInfo.h"
  10. @interface CountryInfoManager : NSObject
  11. @property (strong) NSArray *ignoreLanguages; // NSString shortName
  12. @property (strong) NSMutableArray *countryInfos;
  13. @property (strong) NSMutableArray *keyLanguages; // Country info
  14. -(NSArray *) displayNameArray;
  15. -(CountryInfo *) countryInfoWithDisplayName:(NSString*)displayName;
  16. -(CountryInfo *) countryInfoWithShortName:(NSString*)shortName;
  17. @end