SelPeopleV.h 494 B

12345678910111213141516171819202122
  1. //
  2. // SelPeopleV.h
  3. // YBVideo
  4. //
  5. // Created by YunBao on 2018/7/25.
  6. // Copyright © 2018年 cat. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "MessageListModel.h"
  10. typedef void (^SelBlockEvent)(NSString *state,MessageListModel *userModel);
  11. @interface SelPeopleV : UIView
  12. @property(nonatomic,copy)SelBlockEvent selEvent;
  13. //showtype 1-选择联系人 2召唤好友
  14. - (instancetype)initWithFrame:(CGRect)frame showType:(NSString *)showtype selUser:(SelBlockEvent)event;
  15. @end