BGVideoDetailController.h 864 B

12345678910111213141516171819
  1. //
  2. // BGVideoDetailController.h
  3. // BuguLive
  4. //
  5. // Created by fanwe2014 on 2017/3/23.
  6. // Copyright © 2017年 xfg. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface BGVideoDetailController : BGBaseViewController
  10. @property (nonatomic,strong)UITableView *tableView; //tableView
  11. @property (nonatomic,strong)NSMutableArray *dataArray; //动态评论
  12. @property (nonatomic,strong)NSMutableArray *shareArray; //分享的数组
  13. @property (nonatomic,copy)NSString *weibo_id; //用户id
  14. @property (nonatomic,assign)int lastView; //上一个页面,通过这个来判断刷新上一个页面的点赞书,评论数,观看视频数 0代表个人中心这个页面 1代表推荐页面
  15. @end