当前位置: 首页 > 知识库问答 >
问题:

在xcode 6上找不到“restkit/restkit.h”文件

林元明
2023-03-14

我几乎尝试了每一种解决方案,但对我来说都不起作用。我在Xcode6上得到了这个错误。我已经更新了可可豆荚也更新了豆荚文件。

安装更新后,我有以下几行添加:

[!] From now on use `PocketLobbyiOS.xcworkspace`.

[!] The use of implicit sources has been deprecated. To continue using all of the sources currently on your machine, add the following to the top of your Podfile:

    source 'https://github.com/CocoaPods/Specs.git'


[!] The `PocketLobbyiOS [Debug]` target overrides the `GCC_PREPROCESSOR_DEFINITIONS` build setting defined in `Pods/Target Support Files/Pods/Pods.debug.xcconfig'. This can lead to problems with the CocoaPods installation
    - Use the `$(inherited)` flag, or
    - Remove the build settings from the target.

[!] The `PocketLobbyiOS [Release]` target overrides the `GCC_PREPROCESSOR_DEFINITIONS` build setting defined in `Pods/Target Support Files/Pods/Pods.release.xcconfig'. This can lead to problems with the CocoaPods installation
    - Use the `$(inherited)` flag, or
    - Remove the build settings from the target.

[!] The `PocketLobbyiOS [Distribution]` target overrides the `GCC_PREPROCESSOR_DEFINITIONS` build setting defined in `Pods/Target Support Files/Pods/Pods.distribution.xcconfig'. This can lead to problems with the CocoaPods installation
    - Use the `$(inherited)` flag, or
    - Remove the build settings from the target.

[!] OHAttributedLabel has been deprecated in favor of DTCoreText
Sajs-MacBook-Pro:PockyiOS sk$ 

这是我在播客文件中的内容。我已经删除了podfile并重新安装,但仍然是相同的错误。

platform :ios, '6.0'

pod 'MWPhotoBrowser', :git => 'https://github.com/floriankrueger/MWPhotoBrowser.git', :tag => '1.4.1'
pod 'TestFlightSDK', '~> 3.0.2'
pod 'RestKit', '~> 0.23.1'
pod 'RestKit/ObjectMapping'
pod 'RestKit/Search'
pod 'RestKit/Testing'
pod 'PKRevealController', '~> 2.0.6'
pod 'Mapbox', :git => 'https://github.com/mapbox/mapbox-ios-sdk.git', :tag => '1.2.0'
pod 'MagicalRecord/Shorthand', '~> 2.2'
pod 'DDPageControl', '~> 0.1'
pod 'MWPhotoBrowser'
pod 'Reachability', '~> 3.1.1'
pod 'Mixpanel', '~> 2.4.0'
pod 'OHAttributedLabel', '~> 3.5.4'

# ignore all warnings from all pods
inhibit_all_warnings!

post_install do |installer_representation|
    installer_representation.project.targets.each do |target|
        target.build_configurations.each do |config|
            config.build_settings['ONLY_ACTIVE_ARCH'] = 'NO'
        end
    end
end

(null):(也许您的意思是:_objc_class_$_plartiCletests)

(空):“_objc_class_$_pllocation”,引用自:

(null):plartiCletests.o中的Objc-class-ref

(空):“_objc_metaclass_$_xctestcase”,引用自:

(空):_objc_metaclass_$_plarticletests.o中的plarticletests

(空):“__xCTDescriptionForValue”,引用自:

(空):-[PLArticleTests testExample]在PLArticleTests.o中

(空):“__xCTFailureHandler”,引用自:

(空):-[PLArticleTests testExample]在PLArticleTests.o中

暂时还没有答案

 类似资料:
  • 问题内容: 我正在尝试使用Jenkins-CI自动构建一个使用Restkit的iOS项目,显然,restkit作为一个项目驻留在主项目中。并且该项目使用XCode- IDE成功构建。 但是当我使用xcodebuild(jenkins使用它并且我确实模拟了它)来构建项目时,它给出了 任何线索出了什么问题,可以使用方案文件纠正此问题吗?如果可以,怎么办?还是可以模拟,XCode-IDE如何处理呢? 问

  • 问题内容: 我收到以下错误: 我的代码是: Windows 7,64位。Python 3.x最新,稳定。 有任何想法吗? 谢谢, 问题答案: 当命令是内置的shell时,请在调用中添加“ shell = True”。 例如,您将输入: 引用文档: 在Windows上唯一需要指定shell = True的时间是将要执行的命令内置到shell中(例如dir或copy)。您不需要shell = True

  • 问题内容: 我们目前正在WebLogic 12.1.2上运行。在这种环境下,我们的应用程序运行良好。 我们现在想要的是将我们的应用程序移植到WebLogic 12.1.3环境中。但是,我们使用的Web服务面临一个问题。在新版本中,服务器引发异常,指出“未找到默认配置文件[metro-default.xml]”。 我正在尝试在此文件上找到某些内容,但没有任何内容。 PS:我们不使用Metro,而是使

  • 我们目前正在WebLogic 12.1.2上运行。在这种环境下,我们的应用程序运行良好。 我们现在想要的是将我们的应用程序与WebLogic12.1.3环境进行同源化。但是我们所使用的Web服务面临着一个问题。在新版本中,服务器抛出一个异常,表示“未找到默认配置文件[metro-default.xml]”。 PS:我们不使用Metro,我们使用WebLogic默认的JAX-WS堆栈。并且应用程序部

  • Restkit 是一个开源的 objective-c 框架,允许在 iOS 和 Mac OS X 的 Objective-C 中与 RESTful Web 服务进行交互,包含简单的 HTTP request/response API ,带有强大的对象映射系统用于减少代码长度。RestKit 可降低 JSON/XML 的处理的资源消耗,支持通过 SBJSON 和 YAJL 进行 JSON 解析。

  • 我创建了用于上传图像的api,它在postman上工作,但在Android上使用多部分数据时未找到响应。 这是我的片段 对此有什么线索吗?我应该添加一些东西到我的控制器?在我的合作伙伴代码中,总是返回文件不成立。我使用POST方法