LVCUGCLiveListController.m
815 Bytes
//
// LVCUGCLiveListController.m
// LiveVideoCloud
//
// Created by cnliveJunBo on 17/6/27.
// Copyright © 2017年 cnlive. All rights reserved.
//
#import "LVCUGCLiveListController.h"
#import "LVCUGCLiveListView.h"
@interface LVCUGCLiveListController ()
@end
@implementation LVCUGCLiveListController
- (void)viewDidLoad {
[super viewDidLoad];
self.navigationItem.title = @"UGC直播";
self.view.backgroundColor = [UIColor whiteColor];
LVCUGCLiveListView *liveListView = [[LVCUGCLiveListView alloc] initWithFrame:CGRectMake(0, 0, SCREEN_WIDTH, SCREEN_HEIGHT - 50)];
liveListView.scrollToTop = YES;
[self.view addSubview:liveListView];
}
- (void)didReceiveMemoryWarning {
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
}
@end