WFCUShareMessageView.h 495 B

1234567891011121314151617
  1. //
  2. // ShareMessageView.h
  3. // TYAlertControllerDemo
  4. //
  5. // Created by tanyang on 15/10/26.
  6. // Copyright © 2015年 tanyang. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import <WFChatClient/WFCChatClient.h>
  10. @interface WFCUShareMessageView : UIView
  11. @property(nonatomic, strong)WFCCConversation *conversation;
  12. @property(nonatomic, strong)WFCCMessage *message;
  13. @property(nonatomic, strong)NSArray<WFCCMessage *> *messages;
  14. @property(nonatomic, strong)void (^forwardDone)(BOOL success);
  15. @end