BubbleTipView.h 799 B

12345678910111213141516171819202122232425262728293031
  1. //
  2. // BubbleTipView.h
  3. // WFChat UIKit
  4. //
  5. // Created by WF Chat on 2017/9/12.
  6. // Copyright © 2017年 WildFireChat. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface BubbleTipView : UIView
  10. @property(nonatomic, copy) NSString *bubbleTipText;
  11. @property(nonatomic, assign) CGSize bubbleTipTextShadowOffset;
  12. @property(nonatomic, strong) UIColor *bubbleTipTextShadowColor;
  13. @property(nonatomic, strong) UIFont *bubbleTipTextFont;
  14. @property(nonatomic, strong) UIColor *bubbleTipBackgroundColor;
  15. @property(nonatomic, assign) CGPoint bubbleTipPositionAdjustment;
  16. @property(nonatomic, assign) CGRect frameToPositionInRelationWith;
  17. @property(nonatomic) BOOL isShowNotificationNumber;
  18. - (instancetype)initWithSuperView:(UIView *)parentView;
  19. - (void)setBubbleTipNumber:(int)msgCount;
  20. @end