123456789101112131415161718192021222324252627 |
- //
- // YOUPAINIMInputEmoticonParser.h
- // NIMKit
- //
- // Created by chris.
- // Copyright (c) 2015 Netease. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- typedef enum : NSUInteger
- {
- NIMInputTokenTypeText,
- NIMInputTokenTypeEmoticon,
-
- } NIMInputTokenType;
- @interface NIMInputTextToken : NSObject
- @property (nonatomic,copy) NSString *text;
- @property (nonatomic,assign) NIMInputTokenType type;
- @end
- @interface YOUPAINIMInputEmoticonParser : NSObject
- + (instancetype)currentParser;
- - (NSArray *)tokens:(NSString *)text;
- @end
|