JXEmoji.h 657 B

123456789101112131415161718192021222324252627282930313233
  1. //
  2. // JXEmoji.h
  3. // sjvodios
  4. //
  5. // Created by jixiong on 13-7-9.
  6. //
  7. //
  8. #import "JXLabel.h"
  9. #import <UIKit/UIKit.h>
  10. @interface JXEmoji : JXLabel<UIActionSheetDelegate>{
  11. NSMutableArray *data;
  12. int _top;
  13. int _size;
  14. }
  15. @property(nonatomic,assign)int faceHeight;
  16. @property(nonatomic,assign)int faceWidth;
  17. @property(nonatomic,assign)int maxWidth;
  18. @property(nonatomic,assign)int offset;
  19. //特殊文本的范围
  20. @property(nonatomic, strong) NSArray* matches;
  21. @property(nonatomic, strong) NSSet* lastTouches;
  22. @property(nonatomic,strong) NSString * copyText;
  23. @property(nonatomic,assign) BOOL contentEmoji;
  24. -(void) setText:(NSString *)text;
  25. @end