IMAContactDrawerShowAble.h 512 B

123456789101112131415161718192021222324
  1. //
  2. // IMAContactDrawerShowAble.h
  3. // TIMAdapter
  4. //
  5. // Created by AlexiChen on 16/2/18.
  6. // Copyright © 2016年 AlexiChen. All rights reserved.
  7. //
  8. #import "IMAShowAble.h"
  9. @protocol IMAContactDrawerShowAble <IMAShowAble>
  10. @property (nonatomic, assign) BOOL isFold; // 是否展开
  11. @property (nonatomic, assign) BOOL isPicked; // 好友选择的时候使用
  12. // 分组实际人数
  13. - (NSInteger)itemsCount;
  14. // 分组人员列表,人数与itemsCount可能不一致
  15. - (NSArray *)items;
  16. @end