acceptCallViewController.h 873 B

12345678910111213141516171819202122232425262728293031
  1. //
  2. // acceptCallViewController.h
  3. // shiku_im
  4. //
  5. // Created by MacZ on 2017/8/7.
  6. // Copyright © 2017年 Reese. All rights reserved.
  7. //
  8. #import "admobViewController.h"
  9. #define UpdateAcceptCallMsg @"UpdateAcceptCallMsg"
  10. @class JXAudioPlayer;
  11. @interface acceptCallViewController : admobViewController{
  12. UIButton* _buttonHangup;
  13. UIButton* _buttonAccept;
  14. JXAudioPlayer* _player;
  15. }
  16. @property (nonatomic, assign) BOOL isGroup;
  17. @property (nonatomic, assign) BOOL isTalk;
  18. @property (nonatomic, copy) NSString * toUserId;
  19. @property (nonatomic, copy) NSString * toUserName;
  20. @property (nonatomic, strong) NSNumber *type;
  21. @property (nonatomic, copy) NSString * roomNum;
  22. @property (nonatomic, weak) NSObject* delegate;
  23. @property (nonatomic, assign) SEL didTouch;
  24. @property (nonatomic, assign) SEL changeAudio;
  25. @property (nonatomic, assign) SEL changeVideo;
  26. @end