Files
GiGaMaskTime/GIGA/Common/Views/JYAddressPicker/JYAddressPicker.h
T
2018-09-16 13:42:55 +08:00

20 lines
473 B
Objective-C

//
// JYAddressPicker.h
// LakalaClient
//
// Created by flying on 2018/8/17.
// Copyright © 2018年 LR. All rights reserved.
//
#import <UIKit/UIKit.h>
typedef void (^SelectedItemBlock)(NSArray *addressArr);
@interface JYAddressPicker : UIViewController
+(JYAddressPicker *)jy_showAt:(UIViewController *)vc;
+(JYAddressPicker *)jy_showAt:(UIViewController *)vc defaultShow:(NSArray *)values;
@property (nonatomic, copy) SelectedItemBlock selectedItemBlock;
@end