zoukankan      html  css  js  c++  java
  • 关于error: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];

    }

    花开花谢春不管,水暖水寒鱼自知.
  • 相关阅读:
    网页加载进度条
    BFC
    Java — 基础语法
    Python — 多进程
    Python — 进程和线程
    Python — 面向对象进阶2
    Python — 面向对象编程基础
    Linnux 05
    Linnux 04
    Linnux 03
  • 原文地址:https://www.cnblogs.com/taintain1984/p/3399625.html
Copyright © 2011-2022 走看看