ChatBarTextView.h 482 B

12345678910111213141516171819202122232425
  1. //
  2. // ChatBarTextView.h
  3. // BuguLive
  4. //
  5. // Created by 朱庆彬 on 2017/8/23.
  6. // Copyright © 2017年 xfg. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface ChatBarTextView : UITextView
  10. - (void)appendFace:(NSInteger)faceIndex;
  11. - (NSString *)getSendTextStr;
  12. @end
  13. @interface ZWNSTextAttachment : NSTextAttachment
  14. @property (nonatomic, assign) CGFloat mFontH;
  15. @property (nonatomic, strong) UIImage *mFaceImg;
  16. @property (nonatomic, strong) NSString *mFaceNmae;
  17. @end