AddFriendView.h 660 B

12345678910111213141516171819202122232425262728
  1. //
  2. // AddFriendView.h
  3. // BuguLive
  4. //
  5. // Created by fanwe2014 on 16/6/29.
  6. // Copyright © 2016年 xfg. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @protocol addFriendDelegate <NSObject>
  10. //添加好友的代理
  11. - (void)addFriendWithIndex:(int)index;
  12. //移除该类
  13. - (void)deleteFriendView;
  14. @end
  15. @interface AddFriendView : UIView
  16. @property (nonatomic, weak) id<addFriendDelegate> delegate;
  17. @property (weak, nonatomic) IBOutlet UIImageView *wechatImgView;
  18. @property (weak, nonatomic) IBOutlet UIImageView *qqImgView;
  19. @property (weak, nonatomic) IBOutlet UIImageView *yinKeImgView;
  20. @property (weak, nonatomic) IBOutlet UILabel *shortNameLabel;
  21. @end