SHomeDynamicView.h 506 B

123456789101112131415161718192021222324
  1. //
  2. // SHomeDynamicView.h
  3. // BuguLive
  4. //
  5. // Created by 宋晨光 on 2020/5/20.
  6. // Copyright © 2020 xfg. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "YHTimeLineListController.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. @interface SHomeDynamicView : UIView<UITableViewDelegate,UITableViewDataSource>
  12. @property (nonatomic,strong) UITableView *tableView;
  13. @property (nonatomic, copy) NSString *user_id;
  14. - (instancetype)initWithFrame:(CGRect)frame andUserId:(NSString *)userId;
  15. @end
  16. NS_ASSUME_NONNULL_END