JXVolumeView.h 374 B

12345678910111213141516171819202122
  1. //
  2. // JXVolumeView.h
  3. // shiku_im
  4. //
  5. // Created by flyeagleTang on 14-7-24.
  6. // Copyright (c) 2014年 Reese. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface JXVolumeView : UIView{
  10. JXImageView* _input;
  11. JXImageView* _volume;
  12. }
  13. @property(nonatomic,assign) double volume;
  14. @property (nonatomic, assign) BOOL isWillCancel;
  15. -(void)show;
  16. -(void)hide;
  17. @end