| 12345678910111213141516171819 |
- //
- // RAContact.h
- // APEX CRM
- //
- // Created by Jack on 2018/12/15.
- // Copyright © 2018 USAI. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- @class CNContact, UIViewController;
- @interface RAContactHelper : NSObject
- + (instancetype)defaultHelper;
- - (void)showContactPickerByViewController:(UIViewController *)viewController withComplete:(void(^)(BOOL canceled, NSArray<CNContact *> *contacts))complete;
- @end
|