XYCountry.h 730 B

1234567891011121314151617181920212223242526272829303132333435
  1. //
  2. // XYCountry.h
  3. // XYCountryCode
  4. //
  5. // Created by 杨卢银 on 2018/8/16.
  6. // Copyright © 2018年 杨卢银. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. typedef enum XYCountryShowType {
  10. XYCountryShowTypeEN = 0,
  11. XYCountryShowTypeZH,
  12. XYCountryShowTypeTW
  13. } XYCountryShowType;
  14. @interface XYCountry : NSObject
  15. -(instancetype)initWithDictionary:(NSDictionary*)aInfo;
  16. @property (strong , nonatomic) NSString *zh;
  17. @property (strong , nonatomic) NSString *en;
  18. @property (strong , nonatomic) NSString *tw;
  19. @property (strong , nonatomic) NSString *code;
  20. @property (strong , nonatomic) NSString *imageName;
  21. @property (strong , nonatomic) NSString *name;
  22. @property (strong , nonatomic) UIImage *image;
  23. @end