我有一个我从UIView派生的类,我想为它创建一个-init类,如下所示:
- (id) init { if (self = [super init]) { // my initializations here } return self; }
不幸的是,我知道一个事实 – 没有被调用.这是我在.h中定义的方式:
-(id)init;
有谁知道它为什么不被调用?
附录:
我发现当我在initWithCoder中进行初始化时,它运行得很好.
我添加了initWithFrame,但没有调用.
这是我在IB中指定的对象.
解决方法
UIViewController和UIView有两个指定的初始值设定项,它们是从nib调用的initWithCoder,以及从代码调用的initWithFrame. Init不是这些对象的指定初始值设定项.
如果你想要涵盖两个基础,你可以做这样的事情:
-(void)initializationCodeMethod{ <#Initialization Code Here#> } -(id)initWithFrame:(CGRect)frame{ if ((self = [super initWithFrame:frame])){ [self initializationCodeMethod]; } return self; } -(id)initWithCoder:(NSCoder *)aDecoder{ if ((self = [super initWithCoder:aDecoder])){ [self initializationCodeMethod]; } return self; }