ChatBubbleLayer.h 522 B

12345678910111213141516171819
  1. //
  2. // ChatBubbleLayer.h
  3. // ChatImageBubbleDemo
  4. //
  5. // Created by HuminiOS on 15/10/28.
  6. // Copyright © 2015年 HuminiOS. All rights reserved.
  7. //
  8. #import <QuartzCore/QuartzCore.h>
  9. #import <UIKit/UIKit.h>
  10. static NSInteger const cornerRadiuslength = 3; //倒角的半径
  11. static NSInteger const crossgrap = 10; // bubble 尖角 的width
  12. static NSInteger const triangleY = 15; // bubble 尖角 的frame.origin.y
  13. @interface ChatBubbleLayer : CALayer
  14. @property(assign, nonatomic)BOOL isReceivedBubble;// 左边泡泡
  15. @end