NTESAudio2TextViewController.h 469 B

12345678910111213141516171819202122
  1. //
  2. // NTESAudio2TextViewController.h
  3. // NIM
  4. //
  5. // Created by amao on 7/10/15.
  6. // Copyright (c) 2015 Netease. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface NTESAudio2TextViewController : UIViewController
  10. @property (nonatomic,strong) IBOutlet UIButton *cancelBtn;
  11. @property (nonatomic,strong) IBOutlet UIView *errorTipView;
  12. @property (nonatomic,copy) void (^completeHandler)(void) ;
  13. - (instancetype)initWithMessage:(NIMMessage *)message;
  14. @end