JXGroupViewController.h 625 B

123456789101112131415161718192021222324252627282930313233
  1. //
  2. // JXGroupViewController
  3. // BaseProject
  4. //
  5. // Created by Huan Cho on 13-8-3.
  6. // Copyright (c) 2013年 ch. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "JXTableViewController.h"
  10. @protocol XMPPRoomDelegate;
  11. @class JXRoomObject;
  12. @class menuImageView;
  13. @interface JXGroupViewController : JXTableViewController<XMPPRoomDelegate>
  14. {
  15. NSMutableArray *_array;
  16. int _refreshCount;
  17. int _recordCount;
  18. NSString* _roomJid;
  19. JXRoomObject *_chatRoom;
  20. UITextField* _inputText;
  21. menuImageView* _tb;
  22. int _selMenu;
  23. int _sel;
  24. UIImageView * _NodataImage;
  25. }
  26. - (void)actionNewRoom;
  27. @end