//
// GMView.m
// Gengmei
//
// Created by wangyang on 9/14/15.
// Copyright (c) 2015 Wanmeichuangyi. All rights reserved.
//
#import "GMView.h"
@implementation GMView
- (instancetype)initWithFrame:(CGRect)frame
{
self = [super initWithFrame:frame];
if (self) {
[self setup];
}
return self;
}
- (void)awakeFromNib{
[super awakeFromNib];
[self setup];
}
- (void)setup{
}
@end
-
jz authored2499948e