1234567891011121314151617181920212223242526272829303132 |
- #import <UIKit/UIKit.h>
- @class WFCCConversation;
- @interface WFCUMessageListViewController : UIViewController
- @property (nonatomic, strong)WFCCConversation *conversation;
- @property (nonatomic, strong)NSString *highlightText;
- @property (nonatomic, assign)long highlightMessageId;
- @property (nonatomic, strong)NSString *privateChatUser;
- @property (nonatomic, assign)BOOL multiSelecting;
- @property (nonatomic, strong)NSMutableArray *selectedMessageIds;
- @property (nonatomic, assign)BOOL silentJoinChatroom;
- @property (nonatomic, assign)BOOL keepInChatroom;
- @property (nonatomic, assign)BOOL presented;
- @end
|