EMChatViewController.h 640 B

123456789101112131415161718192021222324252627
  1. //
  2. // EMChatViewController.h
  3. // ChatDemo-UI3.0
  4. //
  5. // Created by XieYajie on 2019/1/18.
  6. // Copyright © 2019 XieYajie. All rights reserved.
  7. //
  8. #import "EMRefreshViewController.h"
  9. NS_ASSUME_NONNULL_BEGIN
  10. @class EMConversationModel;
  11. @interface EMChatViewController : EMRefreshViewController
  12. @property(nonatomic, strong) UIAlertController *alertController;
  13. - (instancetype)initWithConversationId:(NSString *)aId
  14. type:(EMConversationType)aType
  15. createIfNotExist:(BOOL)aIsCreate;
  16. - (instancetype)initWithCoversationModel:(EMConversationModel *)aModel;
  17. @end
  18. NS_ASSUME_NONNULL_END