// // NIMInputAtManager.h // NIMKit // // Created by chris on 2016/12/8. // Copyright © 2016年 NetEase. All rights reserved. // #import #define NIMInputAtStartChar @"@" #define NIMInputAtEndChar @"\u2004" @interface NIMInputAtItem : NSObject @property (nonatomic,copy) NSString *name; @property (nonatomic,copy) NSString *uid; @property (nonatomic,assign) NSRange range; @end @interface YOUPAINIMInputAtCache : NSObject - (NSArray *)youpaifallAtUid:(NSString *)sendText; - (void)clean; - (void)addAtItem:(NIMInputAtItem *)item; - (NIMInputAtItem *)item:(NSString *)name; - (NIMInputAtItem *)removeName:(NSString *)name; @end