| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- //
- // StartLiveTitleBottomView.m
- // BuguLive
- //
- // Created by 志刚杨 on 2022/10/18.
- // Copyright © 2022 xfg. All rights reserved.
- //
- #import "StartLiveTitleBottomView.h"
- @interface StartLiveTitleBottomView ()
- @end
- @implementation StartLiveTitleBottomView
- #pragma mark - LifeCycle
- - (void)dealloc {
- [self removeNotificationObserver];
- }
- - (void)awakeFromNib {
- [super awakeFromNib];
- //设置view
- [self setupView];
-
- //请求数据
- [self requestData];
-
- //设置通知
- [self addNotificationObserver];
- }
- #pragma mark - View
- - (void)setupView {
-
- }
- #pragma mark - Network
- - (void)requestData {
-
- }
- #pragma mark- Delegate
- #pragma mark UITableDatasource & UITableviewDelegate
- #pragma mark - Private
- #pragma mark - Event
- #pragma mark - Public
- #pragma mark - NSNotificationCenter
- - (void)addNotificationObserver {
-
- }
- - (void)removeNotificationObserver {
-
- }
- #pragma mark - Setter
- #pragma mark - Getter
- @end
|