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

#import "CustomView.h"
//import

@interface CustomView ()

//interfaceDeclare

@end

@implementation CustomView

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

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

//body

@end