NIMContactPickedView.h 499 B

1234567891011121314151617181920212223242526
  1. //
  2. // ContactPickedView.h
  3. // NIM
  4. //
  5. // Created by ios on 10/23/13.
  6. // Copyright (c) 2013 Netease. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @class NIMKitInfo;
  10. @protocol NIMContactPickedViewDelegate <NSObject>
  11. - (void)removeUser:(NSString *)userId;
  12. @end
  13. @interface NIMContactPickedView : UIView <UIScrollViewDelegate>
  14. @property (nonatomic, weak) id<NIMContactPickedViewDelegate> delegate;
  15. - (void)removeMemberInfo:(NIMKitInfo *)info;
  16. - (void)addMemberInfo:(NIMKitInfo *)info;
  17. @end