MainPageView.h 1.0 KB

1234567891011121314151617181920212223242526272829303132333435
  1. //
  2. // MainPageView.h
  3. // BuguLive
  4. //
  5. // Created by fanwe2014 on 16/6/13.
  6. // Copyright © 2016年 xfg. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @protocol privateLetterDelegate <NSObject>
  10. //私信的代理
  11. - (void)sentPersonLetter:(NSString*)taguserid;
  12. @end
  13. @interface MainPageView : BGBaseView
  14. @property (nonatomic, weak) id<privateLetterDelegate>delegate;
  15. @property ( nonatomic,copy) NSString *user_id;
  16. @property ( nonatomic,assign) NSInteger has_focus;
  17. @property ( nonatomic,assign) NSInteger has_black;
  18. @property (weak, nonatomic) IBOutlet UIView *backGroundView;
  19. @property (weak, nonatomic) IBOutlet UIButton *followButton;
  20. @property (weak, nonatomic) IBOutlet UIButton *personLetterButton;
  21. @property (weak, nonatomic) IBOutlet UIButton *defriendButton;
  22. @property (weak, nonatomic) IBOutlet UIView *VLineView1;
  23. @property (weak, nonatomic) IBOutlet UIView *VLineView2;
  24. @property (weak, nonatomic) IBOutlet UIView *HLineView;
  25. - (void)changeState;
  26. @end