ChatMsgEditVC.h 472 B

123456789101112131415161718192021
  1. //
  2. // ChatMsgEditVC.h
  3. // smartRhino
  4. //
  5. // Created by niuzhen on 2020/10/14.
  6. // Copyright © 2020 tederen. All rights reserved.
  7. //
  8. #import "BaseViewController.h"
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface ChatMsgEditVC : BaseViewController
  11. @property (nonatomic, assign) BOOL IsMove;
  12. @property (nonatomic, strong) NSArray *dataArray;
  13. @property (nonatomic, copy) void(^upDataBlock)(void);
  14. +(ChatMsgEditVC *)initChatMsgEditVC;
  15. @end
  16. NS_ASSUME_NONNULL_END