Guest User

Untitled

a guest
Dec 16th, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.70 KB | None | 0 0
  1. //
  2. // LNCityPickerView.h
  3. // LNCityPickerView
  4. //
  5. // Created by Madjid Mahdjoubi on 6/5/13.
  6. // Copyright (c) 2013 GG. All rights reserved.
  7. //
  8.  
  9. #import <UIKit/UIKit.h>
  10.  
  11. @interface LNCityPickerModel : NSObject
  12.  
  13. @property(strong, nonatomic) NSString *id;
  14. @property(strong, nonatomic) NSString *region_name;
  15.  
  16. @end
  17.  
  18. @interface LNCityPickerView : UIView
  19.  
  20. + (void)showWithSelectedProvince:(LNCityPickerModel *)selectedProvince
  21. selectedCity:(LNCityPickerModel *)selectedCity
  22. selectedDistrict:(LNCityPickerModel *)selectedDistrict
  23. completion:(void (^)(LNCityPickerModel *selectedProvince, LNCityPickerModel *selectedCity, LNCityPickerModel *selectedDistrict))completion;
  24.  
  25. @end
Add Comment
Please, Sign In to add comment