码迷,mamicode.com
首页 > 其他好文 > 详细

关于error:Cannot assign to 'self' outside of a method in the init family

时间:2015-10-07 14:46:01      阅读:160      评论:0      收藏:0      [点我收藏+]

标签:

在很多时候我们都要重写初始化方法。而“error:Cannot assign to ‘self‘ outside of a method in the init family”这个错误是基于初始化方法

名的编写错误导致的。

原因在于:

Xcode判断是否为init方法规则:方法返回id,并且名字以init+大写字母开头+其他  为准则。例如:- (id) initWithXXX;

出错代码:- (instancetype) Myinit{

 self = [super init];

 ……

}

解决方法:- (instancetype) initWithMy

{

 self = [super init];

}

关于error:Cannot assign to 'self' outside of a method in the init family

标签:

原文地址:http://www.cnblogs.com/djrLog/p/4858636.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!