| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- //
- // JXRoomMemberVC.h
- // shiku_im
- //
- // Created by flyeagleTang on 14-6-10.
- // Copyright (c) 2014年 Reese. All rights reserved.
- //
- #import "admobViewController.h"
- @class roomData;
- @class JXRoomObject;
- @interface JXRoomMemberVC : admobViewController<LXActionSheetDelegate>{
- JXLabel* _desc;
- JXLabel* _userName;
- JXLabel* _roomName;
- UILabel* _creater;
- UILabel* _size;
- NSMutableArray* _deleteArr;
- NSMutableArray* _images;
- NSMutableArray* _names;
- BOOL _delMode;
- JXRoomObject *_chatRoom;
- int _h;
- BOOL _isAdmin;
- BOOL _allowEdit;
- JXEmoji* _note;
- UIView* _heads;
- int _delete;
- int _disable;
- BOOL _disableMode;
- JXUserObject* _user;
- JXImageView* _blackBtn;
- }
- @property (nonatomic,retain) JXRoomObject* chatRoom;
- @property (nonatomic,retain) roomData* room;
- @end
|