1234567891011121314151617181920212223 |
- //
- // CountryInfoManager.h
- // UUT
- //
- // Created by zhuge on 14/9/14.
- // Copyright (c) 2014年 com.woodenperon. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- #import "CountryInfo.h"
- @interface CountryInfoManager : NSObject
- @property (strong) NSArray *ignoreLanguages; // NSString shortName
- @property (strong) NSMutableArray *countryInfos;
- @property (strong) NSMutableArray *keyLanguages; // Country info
- -(NSArray *) displayNameArray;
- -(CountryInfo *) countryInfoWithDisplayName:(NSString*)displayName;
- -(CountryInfo *) countryInfoWithShortName:(NSString*)shortName;
- @end
|