OpenCV无法与Cocoapods iOS合作

时间:2016-03-09 09:40:07

标签: ios opencv cocoapods

我正在尝试使用cocoapods的OpenCV Framework

我在编写pod install时显示错误

  

无法找到OpenCV

的规范

任何人都可以帮我解决这个问题吗?

# Uncomment this line to define a global platform for your project
# platform :ios, '8.0'
# Uncomment this line if you're using Swift
# use_frameworks!

target 'Driver App' do
pod 'AFNetworking', '~> 2.6.3'
pod 'CLImageEditor'
pod 'OpenCV'
end

target 'Driver AppTests' do

end

1 个答案:

答案 0 :(得分:0)

试试这个

# Uncomment this line to define a global platform for your project
# platform :ios, '8.0'
# Uncomment this line if you're using Swift
# use_frameworks!

target 'Driver App' do
pod 'AFNetworking', '~> 2.6.3'
pod 'CLImageEditor', '~> 0.1'
pod 'OpenCV', '~> 3.0'
end

target 'Driver AppTests' do

end