在Xcode 7.0.0 Swift 2 iOS9中使用Objective-c pod

在Xcode 7.0.0 Swift 2 iOS9中使用Objective-c pod,ios,objective-c,swift2,cocoapods,Ios,Objective C,Swift2,Cocoapods,我想在我的Swift项目中使用此目标C pod: : Cocoapods 0.36及以上版本介绍了使用框架!指示 这意味着导入时不需要桥接标头 Swift中的Objective-C吊舱 但是我不能导入视图并使用库的代码 这是我的pod文件 # Uncomment this line to define a global platform for your project platform :ios, '8.0' use_frameworks! target 'PROJ' do pod

我想在我的Swift项目中使用此目标C pod:

:

Cocoapods 0.36及以上版本介绍了使用框架!指示 这意味着导入时不需要桥接标头 Swift中的Objective-C吊舱

但是我不能导入视图并使用库的代码

这是我的pod文件

# Uncomment this line to define a global platform for your project
platform :ios, '8.0'
use_frameworks!

target 'PROJ' do
    pod 'Koloda', '~> 2.0.3'
    pod 'EAIntroView'
end

target 'PROJTests' do

end

target 'PROJUITests' do

end

Cocoapods将其编译为框架,尝试使用@import-EAIntroView

您不能导入是什么意思?cocoapods或Xcode是否有任何错误?