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
29 lines
536 B
//
|
|
// AFEStatusBar.h
|
|
// FaceEyePrint
|
|
//
|
|
// Created by yukun.tyk on 12/17/15.
|
|
// Copyright © 2015 DTF. All rights reserved.
|
|
//
|
|
|
|
#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
|