https://www.ng.bluemix.net/docs/services/mobilepush/index.html
按照Bluemix中新iOS8应用程序的入门文档中的说明,我得到以下代码行的编译错误
IMFClient *imfClient = IMFClient sharedInstance;[imfClient initializeWithBackendRout ....
抛出错误。
AppDelegate.m:27:29:使用未声明的标识符'IMFClient‘AppDelegate.m:28:6:使用未声明的标识符'imfClient’
发布于 2015-06-18 08:27:59
在启用现有项目的文档中,我发现文档中缺少'#import‘语句,需要在AppDelegate.m文件中添加该语句以解决编译错误。
https://stackoverflow.com/questions/30904655
复制相似问题