//
//  CustomView.m
//
//  Code generated using QuartzCode <VERSION> on <DATE>.
//  www.quartzcodeapp.com
//

#import "CustomView.h"
//import

@interface CustomView ()

@end

@implementation CustomView

//<before init>

- (instancetype)initWithFrame:(CGRect)frame
{
self = [super initWithFrame:frame];
if (self) {
// Initialization code
}
return self;
}

- (instancetype)initWithCoder:(NSCoder *)coder
{
self = [super initWithCoder:coder];
if (self) {
// Initialization code
}
return self;
}

