LeaderboardViewController.h 599 B

1234567891011121314151617181920
  1. //
  2. // LeaderboardViewController.h
  3. // BuguLive
  4. //
  5. // Created by yy on 16/10/11.
  6. // Copyright © 2016年 xfg. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "SegmentView.h"
  10. @interface LeaderboardViewController : UIViewController
  11. @property ( nonatomic,assign) BOOL isHiddenTabbar; //是否隐藏tabbar
  12. @property (nonatomic, copy) NSString *hostLiveId; //主播id
  13. @property (nonatomic, strong) SegmentView *segmentView;
  14. @property (nonatomic, strong) SegmentView *listSegmentView;
  15. @property (nonatomic, copy) NSString *user_id;
  16. @end