洛阳学员端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
536 B

7 months ago
  1. //
  2. // AFEStatusBar.h
  3. // FaceEyePrint
  4. //
  5. // Created by yukun.tyk on 12/17/15.
  6. // Copyright © 2015 DTF. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @protocol IStatusBarDelegate <NSObject>
  10. - (void)onButtonCancel;
  11. @optional
  12. - (void)onSoundStatusChanged:(BOOL)newStatus;
  13. @end
  14. @interface AFEStatusBar : UIView
  15. - (void)onButtonCancel;
  16. - (void)setDelegate:(id<IStatusBarDelegate>)delegate;
  17. - (void)setTransparent:(CGFloat) alpha;
  18. - (void)setCancelButtonHidden:(BOOL)hidden;
  19. - (void)setCancelButtonImage:(UIImage *)image;
  20. @end