没有这样的模块' DownPicker'的CocoaPods

时间:2016-01-28 14:17:09

标签: swift cocoapods

所有其他类似的问题都没有解决我的问题。所以我决定问自己的问题。我已正确打开xcworkspace文件。这是我的podfile:

# 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 'WashAndShine' do

pod ‘DownPicker’,git : https://github.com/Darkseal/DownPicker

end

target 'WashAndShineTests' do

end

target 'WashAndShineUITests' do

end

My Link Binary with Libraries: enter image description here

这是我的桥接头文件,我不知道如何导入.m文件。问题是什么?

#ifndef Header_h
#define Header_h

#import "DownPicker.h"
//#import "DownPicker.m"
#import "UIDownPicker.h"
//#import "UIDownPicker.m"
#endif /* Header_h */

但即使建成后它仍然没有说这样的模块?我做错了什么吗?尝试重新安装它,但仍然是同样的事情。在我看来,唯一可能导致它失败的是Downpicker是用客观的C编写的。但是从这篇文章Combobox component for Swift (failed with DownPicker)来看,它似乎适用于Swift。

1 个答案:

答案 0 :(得分:0)

您应该在swift桥接头文件中导入它。

https://developer.apple.com/library/ios/documentation/Swift/Conceptual/BuildingCocoaApps/MixandMatch.html

并在此处将您的头文件定义为xcode