BDFaceSelectConfigCell.h 685 B

123456789101112131415161718192021222324252627282930
  1. //
  2. // BDFaceSelectConfigCell.h
  3. // FaceSDKSample_IOS
  4. //
  5. // Created by Zhang,Jian(MBD) on 2020/12/1.
  6. // Copyright © 2020 Baidu. All rights reserved.
  7. //
  8. #import "BDFaceAdjustParamsRootCell.h"
  9. #import "BDFaceSelectRadio.h"
  10. #import "BDFaceSelectItem.h"
  11. #import "BDFaceAdjustParams.h"
  12. NS_ASSUME_NONNULL_BEGIN
  13. typedef void(^BDFaceUserWillAdjustParams)(BDFaceSelectType);
  14. extern float const BDFaceSelectConfigCellHeight;
  15. @interface BDFaceSelectConfigCell : BDFaceAdjustParamsRootCell
  16. @property(nonatomic, strong) BDFaceSelectRadio *radio;
  17. @property(nonatomic, copy) BDFaceUserWillAdjustParams adjustConfigAction;
  18. - (void)showSettingButton:(BOOL)show;
  19. @end
  20. NS_ASSUME_NONNULL_END