| 123456789101112131415161718192021222324252627282930313233 |
- //
- // JXGroupViewController
- // BaseProject
- //
- // Created by Huan Cho on 13-8-3.
- // Copyright (c) 2013年 ch. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "JXTableViewController.h"
- @protocol XMPPRoomDelegate;
- @class JXRoomObject;
- @class menuImageView;
- @interface JXGroupViewController : JXTableViewController<XMPPRoomDelegate>
- {
- NSMutableArray *_array;
- int _refreshCount;
- int _recordCount;
- NSString* _roomJid;
- JXRoomObject *_chatRoom;
- UITextField* _inputText;
- menuImageView* _tb;
- int _selMenu;
- int _sel;
-
- UIImageView * _NodataImage;
- }
- - (void)actionNewRoom;
- @end
|