我的podfile:
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '8.1'
target 'xxx' do
pod 'GooglePlaces'
pod 'RSKImageCropper'
pod 'AFNetworking', '~> 3.0'
pod 'DZNEmptyDataSet'
pod 'Base64', '~> 1.1.2'
pod 'BGTableViewRowActionWithImage'
pod 'Google/CloudMessaging'
pod 'Google/Analytics'
pod 'TYMProgressBarView'
pod 'Fabric'
pod 'Crashlytics'
pod 'NestSDK'
end
我在控制台中收到此错误消息:
objc [3645]:类SSKeychain在/System/Library/PrivateFrameworks/StoreServices.framework/StoreServices(0x1b27d32b0)和/ var / containers / Bundle / Application / 9A955CA3-9741-4867-9307-0870BBD6CF08 / xxx中实现.app / xxx(0x10112eab8)。将使用两者之一。哪一个未定义。
答案 0 :(得分:2)
在iOS 10中有一个名为SSKeychain的私有类。这就是您收到此错误的原因。因此SSKeychain
has been renamed到SAMKeychain
。
由于您未在SSKeychain
中隐式添加Podfile
,我认为它是您使用的其他Pod之一的依赖关系。您可以通过查看Podfile.lock
找到这个。找到具有此相关性的库后,检查其podspec是否已更新为使用SAMKeychain
。