JXMsgViewController.h 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. //
  2. // JXMsgViewController.h
  3. //
  4. // Created by flyeagleTang on 14-4-3.
  5. // Copyright (c) 2014年 Reese. All rights reserved.
  6. //
  7. #import "JXTableViewController.h"
  8. #import <UIKit/UIKit.h>
  9. #import "JXMessageTableVc.h"
  10. #import "JXXMMainVc.h"
  11. #import "JXMyModel.h"
  12. #import <AVFoundation/AVFoundation.h>
  13. #import "SimpleAudioPlayer.h"
  14. /// <#Description#>
  15. @interface JXMsgViewController : JXMessageTableVc <UIScrollViewDelegate>{
  16. // NSMutableArray *_array;
  17. int _refreshCount;
  18. int _recordCount;
  19. float lastContentOffset;
  20. int upOrDown;
  21. JXAudioPlayer* _audioPlayer;
  22. JXRoomObject *_chatRoom;
  23. roomData* _room;
  24. }
  25. @property(nonatomic,assign) int msgTotal;
  26. @property (nonatomic, strong) NSMutableArray *array;
  27. @property (nonatomic, strong) UIView *backView;
  28. @property (nonatomic,copy)NSArray *customerArr; //客服信息
  29. @property (nonatomic,weak) UILabel *titleLb;
  30. - (void)cancelBtnAction;
  31. - (void)getTotalNewMsgCount;
  32. @property (nonatomic,strong) AVPlayer *palyer;
  33. @property (nonatomic,assign) NSInteger reciveScrollViewIndex;
  34. @property (nonatomic,strong) NSMutableArray *dataArrOneOne;
  35. //记录收到的新消息
  36. @property (nonatomic,assign) int reciveNewMessage2222;
  37. @property (nonatomic,assign) int reciveNewMessage;
  38. @property (nonatomic,strong) NSDictionary *dictMsag;
  39. @property (nonatomic,strong) AVAudioPlayer *player;
  40. @end