OliveappVerificationControllerFactory.h 530 B

12345678910111213141516171819
  1. //
  2. // OliveappVerificationControllerFactory.h
  3. // OliveappLibrary
  4. //
  5. // Created by rick on 17/1/3.
  6. // Copyright © 2017年 Oliveapp. All rights reserved.
  7. //
  8. #import "Foundation/Foundation.h"
  9. #import "OliveappVerificationController.h"
  10. #import "OliveappVerificationControllerWithoutPrestart.h"
  11. @interface OliveappVerificationControllerFactory : NSObject
  12. typedef NS_ENUM(NSUInteger,VerificationControllerType) {
  13. // 定义检测种类
  14. WITH_PRESTART = 0,
  15. WITHOUT_PRESTART = 1
  16. };
  17. + (id)create:(NSUInteger)withType;
  18. @end