// // ContactPickedView.h // NIM // // Created by ios on 10/23/13. // Copyright (c) 2013 Netease. All rights reserved. // #import @class NIMKitInfo; @protocol NIMContactPickedViewDelegate - (void)removeUser:(NSString *)userId; @end @interface NIMContactPickedView : UIView @property (nonatomic, weak) id delegate; - (void)removeMemberInfo:(NIMKitInfo *)info; - (void)addMemberInfo:(NIMKitInfo *)info; @end