EMMessageBubbleView.h 611 B

123456789101112131415161718192021222324252627
  1. //
  2. // EMMessageBubbleView.h
  3. // ChatDemo-UI3.0
  4. //
  5. // Created by XieYajie on 2019/1/25.
  6. // Copyright © 2019 XieYajie. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "EMMessageModel.h"
  10. @interface EMMessageBubbleView : UIImageView
  11. @property (nonatomic, readonly) EMMessageDirection direction;
  12. @property (nonatomic, readonly) EMMessageType type;
  13. @property (nonatomic, strong) EMMessageModel *model;
  14. - (instancetype)initWithDirection:(EMMessageDirection)aDirection
  15. type:(EMMessageType)aType;
  16. - (void)setupBubbleBackgroundImage;
  17. - (void)setupAppBackgroundImage;
  18. @end