| 1234567891011121314151617181920212223 |
- //
- // BGConversationTradeController.h
- // BuguLive
- //
- // Created by 朱庆彬 on 2017/8/23.
- // Copyright © 2017年 xfg. All rights reserved.
- //
- #import "BGBaseViewController.h"
- @interface BGConversationTradeController : BGBaseViewController
- @property (nonatomic, strong) UITableView *mTableView;
- @property (nonatomic, strong) NSMutableArray *conversationArr;
- @property (nonatomic, strong) NSMutableArray *flagArr;
- @property (nonatomic, assign) BOOL isHaveLive; //只有一半的情况
- - (void)updateTableViewFrame;
- @end
|