如何根据.h和.m设置标题搜索路径

时间:2013-04-05 09:51:09

标签: iphone ios objective-c header path

这是一个非常基本的问题,但我找不到解决方案......

我正在尝试将集成项目中的.h文件导入到我的项目中。它说找不到SpeechToTextModule.h文件

我浏览了这些链接..

Xcode 4.2 how include one project into another one?

What is Header Search Path in Xcode 4.3? How to use it?

http://iphoneincubator.com/blog/xcode/how-to-add-multiple-static-library-files-with-different-architectures-to-xcode

我的项目架构:

我想在“ViewController.h”中导入“SpeechToTextModule.h”

enter image description here

看到上面的图片一次..我选择了speechToText.xcodeproj然后“在Finder中显示”然后“获取信息”我得到了以下路径

/ Users / stellent / Documents / Sppech2Text / Speech2ooText / 3rd Party

我将上述路径放在标题搜索路径

这是正确的吗?

我也在项目和目标中设置了标题搜索路径,我尝试了递归和非递归

我给出了所有这些链接,如下面的图片

enter image description here

这是我的项目结构:

enter image description here

enter image description here

enter image description here

1 个答案:

答案 0 :(得分:1)

  1. 复制SpeechToText项目并将其放在包含Speech2ooText项目的文件夹中。

  2. 现在将此(SpeechToText)项目拖放到Speech2ooText项目中。

  3. 转到Speech2ooText的构建设置 - >标题搜索路径并添加此路径

    $ {SRCROOT} /第三方

    $ {SRCROOT} - >它是您的主项目的路径(在您的情况下为Speech2ooText)和由                给'/第三方'我们告诉标题在这个文件夹里。