BDFaceAlertController.h 500 B

123456789101112131415161718192021222324
  1. //
  2. // BDFaceAlertViewController.h
  3. // FaceSDKSample_IOS
  4. //
  5. // Created by Zhang,Jian(MBD) on 2020/12/7.
  6. // Copyright © 2020 Baidu. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. /**
  11. @class:BDFaceAlertController
  12. @description: 自定义AlertController,实现了右边是Bold字体的样式。
  13. */
  14. @interface BDFaceAlertController : UIAlertController
  15. - (void)changeTextToBold:(NSString *)string;
  16. - (void)changeTextToLight:(NSArray *)array;
  17. @end
  18. NS_ASSUME_NONNULL_END