StartLiveTitleBottomView.m 986 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. //
  2. // StartLiveTitleBottomView.m
  3. // BuguLive
  4. //
  5. // Created by 志刚杨 on 2022/10/18.
  6. // Copyright © 2022 xfg. All rights reserved.
  7. //
  8. #import "StartLiveTitleBottomView.h"
  9. @interface StartLiveTitleBottomView ()
  10. @end
  11. @implementation StartLiveTitleBottomView
  12. #pragma mark - LifeCycle
  13. - (void)dealloc {
  14. [self removeNotificationObserver];
  15. }
  16. - (void)awakeFromNib {
  17. [super awakeFromNib];
  18. //设置view
  19. [self setupView];
  20. //请求数据
  21. [self requestData];
  22. //设置通知
  23. [self addNotificationObserver];
  24. }
  25. #pragma mark - View
  26. - (void)setupView {
  27. }
  28. #pragma mark - Network
  29. - (void)requestData {
  30. }
  31. #pragma mark- Delegate
  32. #pragma mark UITableDatasource & UITableviewDelegate
  33. #pragma mark - Private
  34. #pragma mark - Event
  35. #pragma mark - Public
  36. #pragma mark - NSNotificationCenter
  37. - (void)addNotificationObserver {
  38. }
  39. - (void)removeNotificationObserver {
  40. }
  41. #pragma mark - Setter
  42. #pragma mark - Getter
  43. @end