RAContactHelper.h 428 B

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