这是我的podfile:
TextField {
validator: DoubleValidator {
bottom: 0.0
decimals: 1
notation: DoubleValidator.StandardNotation
}
placeholderText: "0.0"
}
这是我的标题:
platform :ios, '8.0'
use_frameworks!
target 'myApp' do
pod 'PureLayout', '~> 2.0.6'
pod 'MMDrawerController', '~> 0.5.7'
pod 'SwiftyJSON', '~> 2.2.0'
end
当我设置此变量#import <PureLayout/PureLayout.h>
#import <MMDrawerController/MMDrawerController.h>
#import <MMDrawerController/MMDrawerVisualState.h>
时,我收到此错误:
var drawerController: MMDrawerController!
我尝试删除所有广告并运行Use of undeclared type 'MMDrawerController'
,清除pod install
并运行pod cache
,但我仍然没有运气。非常感谢任何帮助:)
我必须对我的网桥标题做错了,因为我可以完全删除这些行:
pod update
只要我在使用它的文件中导入#import <MMDrawerController/MMDrawerController.h>
#import <MMDrawerController/MMDrawerVisualState.h>
,程序就会正常运行。但是,这不起作用反之亦然