Cannot assign to 'self' outside of a method in the init family
Posted ⬆️小马哥⬆️
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Cannot assign to 'self' outside of a method in the init family相关的知识,希望对你有一定的参考价值。
有时候我们重写父类的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];
}
以上是关于Cannot assign to 'self' outside of a method in the init family的主要内容,如果未能解决你的问题,请参考以下文章
Cannot assign to 'self' outside of a method in the init family
Vue的报错:Uncaught TypeError: Cannot assign to read only property 'exports' of object '#<
Vue的报错:Uncaught TypeError: Cannot assign to read only property 'exports' of object '#<
Vue报错:Uncaught TypeError: Cannot assign to read only property 'exports' of object 的解决方法(代码片段
vue-cli3 打包时使用‘babel-loader’遇到Cannot assign to read only property ‘exports’ of object '#'问题