使用 cocoapods-1.0.1 下载时 Coreplot 抛出错误

Coreplot throws error when downloaded with cocoapods-1.0.1

我正在尝试使用 Cocoapods 1.0.1 下载 coreplot,但它一直抛出错误 'CorePlot/CorePlot-CocoaTouch.h' file not found 我尝试了网上提供的各种解决方案,但没有任何效果。请帮我解决这个问题。

这是我的 podfile 代码示例

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

platform :ios, '7.0'

xcodeproj 'Sample'

pod 'CorePlot', :git => 'https://github.com/core-plot/core-plot.git', :branch => 'release-2.0'
pod 'Google/Analytics'


target 'SampleKIFTests', :exclusive => true do
  pod 'KIF', '~> 3.3.0'
  pod 'KIF/IdentifierTests', '~> 3.3.0'
end

在构建静态库时使用此行来包含 header:

#import "CorePlot-CocoaTouch.h"

或者构建框架时的这个:

#import <CorePlot/CorePlot.h>