// // YOUPAINIMInputEmoticonParser.h // NIMKit // // Created by chris. // Copyright (c) 2015 Netease. All rights reserved. // #import 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