我正在尝试按照此处给出的步骤进行操作:
http://docs.pushmote.com/docs/import-pushmote-ios-sdk-swift
但是我收到了这个错误:' PushmoteSDK / Headers / Pushmote.h'当我尝试构建我的应用程序时找不到文件。
我的Pushmote-Bridging-Header.h文件中有这个import语句,文件显然在那里,在project_dir / PushmoteSDK.framework / Headers / Pushmote.h
我已经阅读了有关xcode的其他一些头文件找不到的错误,并且解决方案似乎变化很大,所以我认为它可能与特定版本的xcode有关。也许有人之前曾使用pushmote和xcode7协助?
编辑:
这是我在/Users/alex/ios_projects/Monkey/Monkey/Pushmote-Bridging-Header.h中找到的Pushmote-Bridging-Header.h文件
#ifndef Pushmote_Bridging_Header_h
#define Pushmote_Bridging_Header_h
#import "PushmoteSDK/Pushmote.h"
#endif /* Pushmote_Bridging_Header_h */
答案 0 :(得分:1)
You should change import line like this;
#import "PushmoteSDK/Headers/Pushmote.h"
to
#import "PushmoteSDK/Pushmote.h"