我正在尝试为具有包含 TARGET_OS_IPHONE 条件的源文件的库创建一个 podspec。linting 报告错误
YapDatabase (1.2.1)
- ERROR | [OSX] [xcodebuild]
YapDatabase/YapDatabase/Abstract/YapAbstractDatabaseConnection.m:78:8:
error: property 'autoFlushMemoryLevel' not found on object of type
'YapAbstractDatabaseConnection *'
- ERROR | [OSX] [xcodebuild]
YapDatabase/YapDatabase/Abstract/YapAbstractDatabaseConnection.m:398:30: error:
no visible @interface for 'YapAbstractDatabaseConnection' declares the selector
'autoFlushMemoryLevel'
这是 podspec:
Pod::Spec.new do |s|
s.name = "YapDatabase"
s.version = "1.2.1"
s.summary = "A key/value store built atop sqlite for iOS & Mac."
s.homepage = "https://github.com/yaptv/YapDatabase"
s.license = 'MIT'
s.author = { "yaptv" => "yaptv@yaptv.com" }
s.source = { :git => "https://github.com/yaptv/YapDatabase.git", :tag => "1.2.1" }
s.ios.deployment_target = '6.0'
s.osx.deployment_target = '10.75'
s.source_files = 'YapDatabase/**/*.{h,m}','Vendor/**/*.{h,m}'
s.exclude_files = 'YapDatabase/Testing'
s.public_header_files = 'YapDatabase/Key_Value/YapDatabase.h'
s.requires_arc = true
end
这是源代码中显然导致错误的行:
#if TARGET_OS_IPHONE
/**
* When a UIApplicationDidReceiveMemoryWarningNotification is received,
* the code automatically invokes flushMemoryWithLevel and passes this set level.
*
* The default value is YapDatabaseConnectionFlushMemoryLevelMild.
*
* @see flushMemoryWithLevel:
**/
@property (atomic, assign, readwrite) int autoFlushMemoryLevel;
#endif
我正在使用 Cocoapods v.0.19.1,那么为什么会抛出这个错误,我该如何解决呢?