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