我知道有几次这样问过.我按照这些说明进行操作:
在Xcode 5中添加框架到项目并添加了*relative*路径
Xcode仍然给出了这个错误:
这是我目前的配置:
螺栓框架是我可以使用Parse SDK.我从这里下载了空白项目:https://parse.com/apps/quickstart#parse_data/mobile/ios/native/new
它正在发挥作用.我试图复制每个配置选项,但它仍然无法正常工作.
如果Xcode 7中缺少libz.dylib和libsqlite3.dylib但是存在.tbd版本,我如何使用Parse.我只是想设置推送通知.我如何让它工作?
此外,我认为这是因为我无法导入Parse到AppDelegate.swift而没有错误说它不存在.
我正在尝试将Parse.com SDK添加到我的Xcode 7项目中.我已经按照入门指南进行操作,之前我已经设法在Xcode 6中执行此操作.但是这次我在尝试构建时出现此错误消息:
ld: framework not found Bolts
clang: error: linker command failed with exit code 1 (use -v to see invocation)
Run Code Online (Sandbox Code Playgroud)
谢谢
我从 Xcode 得到以下错误。尝试了许多互联网上可用的解决方案,但没有用。
ld: framework not found FirebaseInstanceID
Run Code Online (Sandbox Code Playgroud)
我试过的解决方案:
尝试删除 Podfile.lock 和 Podfile 并通过以下方式再次启动:
pod init
pod install
pod update
Run Code Online (Sandbox Code Playgroud)
我的 Podfile 看起来像:
# Uncomment this line to define a global platform for your project
platform :ios, '10.0'
# CocoaPods analytics sends network stats synchronously affecting flutter build latency.
ENV['COCOAPODS_DISABLE_STATS'] = 'true'
project 'Runner', {
'Debug' => :debug,
'Profile' => :release,
'Release' => :release,
}
def parse_KV_file(file, separator='=')
file_abs_path = File.expand_path(file)
if !File.exists? file_abs_path …Run Code Online (Sandbox Code Playgroud)