areaView.h 727 B

123456789101112131415161718192021222324252627
  1. //
  2. // areaView.h
  3. // BuguLive
  4. //
  5. // Created by fanwe2014 on 16/7/19.
  6. // Copyright © 2016年 xfg. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @protocol AreaDelegate <NSObject>
  10. - (void)confrmCallBack:(NSString *)provice withCity:(NSString *)city andtagIndex:(int)tagIndex;
  11. @end
  12. @interface areaView : UIView
  13. @property (nonatomic, strong) NSMutableArray *allArray; // 存放没有组装前的所有数据
  14. @property (nonatomic, strong) NSMutableArray *bigArray;
  15. @property (nonatomic, strong) NSMutableArray *proniceArray;
  16. @property (nonatomic, strong) NSMutableArray *cityArray;
  17. @property (nonatomic, weak) id<AreaDelegate> delegate;
  18. - (id)initWithDelegate:(id<AreaDelegate>)delegate withCity:(NSString *)city;
  19. @end