PeopleInformationView.h 604 B

1234567891011121314151617181920212223
  1. //
  2. // PeopleInformationView.h
  3. // BuguLive
  4. //
  5. // Created by ycp on 16/10/18.
  6. // Copyright © 2016年 xfg. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface PeopleInformationView : UIView
  10. @property (nonatomic, strong) UILabel *nameLabel;
  11. @property (nonatomic, strong) UIImageView *vipImageView;
  12. @property (nonatomic, strong) UIImageView *sexImageView;
  13. @property (nonatomic, strong) UIImageView *levelImageView;
  14. @property (nonatomic, strong) UIButton *editButton;
  15. @property (nonatomic, weak)id delegate;
  16. @end
  17. @protocol PeopleInformationViewDelegate <NSObject>
  18. - (void)editClickButton;
  19. @end