Cannot assign to 'self' outside of a method in the init family

来源:互联网 发布:mac 快捷键弹出qq消息 编辑:程序博客网 时间:2024/05/17 05:01
有时候我们重写父类的init方法时不注意将init后面的第一个字母写成了小写,在这个方法里面又调用父类的初始化方法(self = [super init];)时会报错,错误信息如下:
error:Cannot assign to 'self' outside of a method in the init family

原因:只能在init方法中给self赋值,Xcode判断是否为init方法规则:方法返回id,并且名字以init +大写字母开头+其他  为准则。例如:- (id) initWithXXX;

出错代码:- (id) Myinit{

self = [super init];

……

}

解决方法:- (id) initWithMy

{

self = [super init];

}

转载地址:http://blog.csdn.net/qi_ruihua/article/details/19981215

0 0
原创粉丝点击