使用 salesforce-ios-sdk 更新现有应用程序后找不到头文件
Header files are not found after updating an existing application with the salesforce-ios-sdk
我已经按照 salesforce 描述的步骤进行操作,并通过 cocoa pods 安装了 iOS-mobile-sdk 到现有的 iOS Swift项目。不幸的是找不到头文件。
是否缺少对路径的引用?
感谢您的帮助。
我能够解决这个问题:
当前的 SalesForceMobileSDK 不支持框架。不要取消注释
# use_frameworks!
在播客文件中:
# 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 'ApproverApp' do
pod 'SalesforceMobileSDK-iOS'
end
我已经按照 salesforce 描述的步骤进行操作,并通过 cocoa pods 安装了 iOS-mobile-sdk 到现有的 iOS Swift项目。不幸的是找不到头文件。
是否缺少对路径的引用?
感谢您的帮助。
我能够解决这个问题:
当前的 SalesForceMobileSDK 不支持框架。不要取消注释
# use_frameworks!
在播客文件中:
# 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 'ApproverApp' do
pod 'SalesforceMobileSDK-iOS'
end