// // LocationPickerView.h // CustomPicker // // Created by ko1o on 2018/7/24. // Copyright © 2018年 ko1o. All rights reserved. // #import @class FSLocationPickerView; @protocol FSLocationPickerViewDelegate @optional - (void)fsLocationPickerView:(FSLocationPickerView *)pickerView locationInfo:(NSArray *)locationInfo; @end @interface FSLocationPickerView : UIView - (void)showPickerViewWithProvince:(NSString *)province city:(NSString *)city area:(NSString *)area; @property(nonatomic, readonly) UIPickerView *pickerView; @property(nonatomic, copy) void(^locationPickerVauleDidChangeBlock)(FSLocationPickerView *pickerView, NSArray *locationInfo); @property(nonatomic, weak) id delegate; - (NSArray *)locationInfo; @end