UIAlertController+Extend.h 622 B

12345678910111213141516171819
  1. //
  2. // UIAlertController+Extend.h
  3. // IDCardRecognition
  4. //
  5. // Created by zhongfeng1 on 2017/3/6.
  6. // Copyright © 2017年 李中峰. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface UIAlertController (Extend)
  10. // 创建AlertController
  11. +(instancetype)alertControllerWithTitle:(NSString *)title message:(NSString *)message okAction:(UIAlertAction *)okAction cancelAction:(UIAlertAction *)cancelAction;
  12. // 创建ActionSheetController
  13. +(instancetype)actionSheetControllerWithTitle:(NSString *)title message:(NSString *)message okAction:(UIAlertAction *)okAction cancelAction:(UIAlertAction *)cancelAction;
  14. @end