12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- //
- // JXMsgViewController.h
- //
- // Created by flyeagleTang on 14-4-3.
- // Copyright (c) 2014年 Reese. All rights reserved.
- //
- #import "JXTableViewController.h"
- #import <UIKit/UIKit.h>
- #import "JXMessageTableVc.h"
- #import "JXXMMainVc.h"
- #import "JXMyModel.h"
- #import <AVFoundation/AVFoundation.h>
- #import "SimpleAudioPlayer.h"
- /// <#Description#>
- @interface JXMsgViewController : JXMessageTableVc <UIScrollViewDelegate>{
- // NSMutableArray *_array;
- int _refreshCount;
- int _recordCount;
- float lastContentOffset;
- int upOrDown;
- JXAudioPlayer* _audioPlayer;
- JXRoomObject *_chatRoom;
- roomData* _room;
- }
- @property(nonatomic,assign) int msgTotal;
- @property (nonatomic, strong) NSMutableArray *array;
- @property (nonatomic, strong) UIView *backView;
- @property (nonatomic,copy)NSArray *customerArr; //客服信息
- @property (nonatomic,weak) UILabel *titleLb;
- - (void)cancelBtnAction;
- - (void)getTotalNewMsgCount;
- @property (nonatomic,strong) AVPlayer *palyer;
- @property (nonatomic,assign) NSInteger reciveScrollViewIndex;
- @property (nonatomic,strong) NSMutableArray *dataArrOneOne;
- //记录收到的新消息
- @property (nonatomic,assign) int reciveNewMessage2222;
- @property (nonatomic,assign) int reciveNewMessage;
- @property (nonatomic,strong) NSDictionary *dictMsag;
- @property (nonatomic,strong) AVAudioPlayer *player;
- @end
-
|