123456789101112131415161718192021222324252627282930313233343536 |
- //
- // NIMInputAtManager.h
- // NIMKit
- //
- // Created by chris on 2016/12/8.
- // Copyright © 2016年 NetEase. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- #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
|