我正试图使用我找到的CDPieMenu要点将here添加到我的swift项目中。
我在本地下载了podspec并将其添加到我的podfile中,如下所示:
pod 'CDPieMenu', :path => '~/Documents/Project/CDPieMenu.podspec'
以下是播客规范:
Pod::Spec.new do |s|
s.name = 'CDPieMenu'
s.version = '0.1'
s.license = 'MIT License'
s.summary = 'Fully and easily customizable rotary wheel control also called pie menu for iPhone and iPad.'
s.homepage = 'https://github.com/wczekalski/CDPieMenu'
s.author = { 'W. Czekalski' => '[email protected]' }
s.source = { :git => 'https://github.com/wczekalski/CDPieMenu.git', :commit => '2f49362' }
s.source_files = 'Wheel'
s.description = 'Fully and easily customizable rotary wheel control also called pie menu for iPhone and iPad.'
'Very similar to the control in Convertbot. As the only one in the internet it rotates with inertia/mementum.'
'Drawn using CoreGraphics without any images.'
s.platform = :ios
s.frameworks = 'AudioToolbox', 'QuartzCore'
s.requires_arc = true
end
我运行了
.podspec
,一切正常,似乎已经安装好了。但是,我现在无法从项目文件中引用它。
我错过什么了吗?
编辑1:
我忘了说我已经设置了一个桥接头并在其中添加了
pod update
头。项目桥接头:
#import "CDCircle.h"
#import "CDCircleGestureRecognizer.h"
#import "CDCircleOverlayView.h"
#import "CDCircleThumb.h"
#import "CDIconView.h"
#import "Common.h"
编辑2:
我刚刚检查了一下,好像豆荚根本没装。
CDPieMenu
目录中没有CDPieMenu
。但是
Pods
没有抛出任何错误。 最佳答案
尝试“pod install”而不是“pod update”。
编辑:
不要忘记使用.xcworkspace文件打开项目。
关于ios - 快速的CDPieMenu(cocoapod),我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/37321545/