mirror of https://github.com/LIJI32/SameBoy.git
13 lines
334 B
Objective-C
13 lines
334 B
Objective-C
#import "GBView.h"
|
|
|
|
@implementation GBView
|
|
- (instancetype)initWithFrame:(CGRect)frame
|
|
{
|
|
self = [super initWithFrame:frame];
|
|
[self createInternalView];
|
|
[self addSubview:self.internalView];
|
|
self.internalView.autoresizingMask = UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight;
|
|
return self;
|
|
}
|
|
@end
|