12345678910111213141516171819202122232425262728293031323334 |
- //
- // YLAreaPickerView.h
- // LiveTV
- //
- // Created by 翟玉磊 on 2019/4/22.
- // Copyright © 2019 翟玉磊. All rights reserved.
- // 省市区选择
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @protocol YLAreaPickerViewDelegate <NSObject>
- - (void)addressPickerViewDidSelected:(NSString *)areaName withDic:(NSDictionary *)info;//点击上方完成按钮的代理传回拼接好的选中地址
- - (void)addressPickerViewDidClose;//点击关闭代理
- @end
- @interface YLAreaPickerView : UIView
- @property (weak, nonatomic) id<YLAreaPickerViewDelegate> delegate;
- + (instancetype)areaPickerWithTitle:(NSString *)title target:(id<YLAreaPickerViewDelegate>)target;
- - (void)show;
- - (void)dismiss;
- - (void)setupCityWithAreaPath:(NSString *)areaPath;
- @end
- NS_ASSUME_NONNULL_END
|