AFEStatusBar.h 536 B

1234567891011121314151617181920212223242526272829
  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