我正在尝试编译一个已经在 appStore 上存在一段时间的 iOS 应用程序,换句话说,一个已经在运行的应用程序。
在这行代码:
@interface CustomLogInViewController : PFLogInViewController
我收到一条错误消息:
Cannot find interface declaration for PFLogInViewController
我最近下载了 Parse SDK 的最新版本 (parse-library-1.6.2)。这可能是原因吗?
我检查了 Parse.h(和其他 .h 文件)文件内容,确实它不包含 PFLogInViewController。似乎旧版本有所不同。
在较旧的 SDK 中,我可以在 Parse.framework/Versions/A/Headers 下看到一个名为 Parse.h 的文件,其中包含一行:
#import <Parse/PFLogInViewController.h>
有人看到我在这里缺少什么吗?