1234567891011121314151617181920212223242526272829 |
- #import <UIKit/UIKit.h>
- @protocol IStatusBarDelegate <NSObject>
- - (void)onButtonCancel;
- @optional
- - (void)onSoundStatusChanged:(BOOL)newStatus;
- @end
- @interface AFEStatusBar : UIView
- - (void)onButtonCancel;
- - (void)setDelegate:(id<IStatusBarDelegate>)delegate;
- - (void)setTransparent:(CGFloat) alpha;
- - (void)setCancelButtonHidden:(BOOL)hidden;
- - (void)setCancelButtonImage:(UIImage *)image;
- @end
|