1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
//
// KWMInformationView.m
// iCemarose
//
// Created by 陈荣科 on 2016/11/9.
// Copyright © 2016年 kollway. All rights reserved.
//
#import "KWMInformationView.h"
@implementation KWMInformationView
- (instancetype)init{
if (self=[super init]) {
[self initContentView];
}
return self;
}
- (instancetype)initWithFrame:(CGRect)frame{
if (self=[super initWithFrame:frame]) {
[self initContentView];
}
return self;
}
- (instancetype)initWithCoder:(NSCoder *)aDecoder{
if (self=[super initWithCoder:aDecoder]) {
[self initContentView];
}
return self;
}
- (void)awakeFromNib{
[super awakeFromNib];
[self initContentView];
}
- (void) initContentView{
[[NSBundle mainBundle] loadNibNamed:@"KWMInformationView" owner:self options:nil];
self.vContent.frame = CGRectMake(0, 0, self.frame.size.width, self.frame.size.height);
[self addSubview:self.vContent];
}
- (IBAction)onClickBackBtn:(id)sender{
if ([self.delegate respondsToSelector:@selector(kwm_backToLastVC)]) {
[self.delegate kwm_backToLastVC];
}
}
@end