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