BGConversationTradeController.h 532 B

1234567891011121314151617181920212223
  1. //
  2. // BGConversationTradeController.h
  3. // BuguLive
  4. //
  5. // Created by 朱庆彬 on 2017/8/23.
  6. // Copyright © 2017年 xfg. All rights reserved.
  7. //
  8. #import "BGBaseViewController.h"
  9. @interface BGConversationTradeController : BGBaseViewController
  10. @property (nonatomic, strong) UITableView *mTableView;
  11. @property (nonatomic, strong) NSMutableArray *conversationArr;
  12. @property (nonatomic, strong) NSMutableArray *flagArr;
  13. @property (nonatomic, assign) BOOL isHaveLive; //只有一半的情况
  14. - (void)updateTableViewFrame;
  15. @end