iOS报错--Init methods must return a type related to the receiver type

3rd,April,2016

错误描述

在ViewController.m文件中声明了一个名为"initCoreData”的方法获取CoreData的上下文。 单数报错"Init methods must return a type related to the receiver type" ,截图如下所示:


错误分析

我声明的方法中返回对象为NSManagedObjectContext,我尝试将返回对象改为UIViewController,则不出现该报错。再试了下ViewController同样不报错


解决方法

1. 该方法名称,不要以"init"开头

总结

init开头的方法中只能返回该对象,不能返回除该对象之外的对象类型。


如有错误,欢迎指正。






你可能感兴趣的:(iOS报错--Init methods must return a type related to the receiver type)