//
|
// DisCoverADView.m
|
// BuWanVideo2.0
|
//
|
// Created by 重庆迈尖科技有限公司 on 2019/3/8.
|
// Copyright © 2019 com.yeshi.buwansheque.ios. All rights reserved.
|
//
|
|
#import "DisCoverADView.h"
|
|
@implementation DisCoverADView
|
|
- (instancetype)initWithFrame:(CGRect)frame {
|
|
self = [super initWithFrame:frame];
|
self = [[[NSBundle mainBundle] loadNibNamed:@"DisCoverADView" owner:self options:nil] lastObject];
|
if (self) {
|
self.frame = frame;
|
}
|
return self;
|
}
|
|
@end
|