相关疑难解决方法(0)

Xcode中的"找不到框架"

我知道有几次这样问过.我按照这些说明进行操作:

在Xcode 5中添加框架到项目并添加了*relative*路径

xcode4:链接器错误:找不到选项的目录

Xcode仍然给出了这个错误:

在此输入图像描述

这是我目前的配置:

在此输入图像描述

在此输入图像描述

螺栓框架是我可以使用Parse SDK.我从这里下载了空白项目:https://parse.com/apps/quickstart#parse_data/mobile/ios/native/new

它正在发挥作用.我试图复制每个配置选项,但它仍然无法正常工作.

xcode ios ios-frameworks xcode6

59
推荐指数
11
解决办法
7万
查看次数

Xcode 7中缺少libsqlite3.dylib和libz.dylib.如何使用Parse?

如果Xcode 7中缺少libz.dylib和libsqlite3.dylib但是存在.tbd版本,我如何使用Parse.我只是想设置推送通知.我如何让它工作?

此外,我认为这是因为我无法导入Parse到AppDelegate.swift而没有错误说它不存在.

parsing swift xcode7

32
推荐指数
2
解决办法
3万
查看次数

在Xcode 7中构建Parse时链接错误

我正在尝试将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)

谢谢

parse-platform swift ios9 xcode7 swift2

3
推荐指数
1
解决办法
8212
查看次数

在 Xcode 上找不到框架 FirebaseInstanceID

我从 Xcode 得到以下错误。尝试了许多互联网上可用的解决方案,但没有用。

  ld: framework not found FirebaseInstanceID
Run Code Online (Sandbox Code Playgroud)

我试过的解决方案:

  1. /sf/answers/2190875011/
  2. 在 Xcode 中找不到框架 FirebaseInstanceID
  3. /sf/answers/3667032071/

尝试删除 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)

xcode ios firebase

3
推荐指数
2
解决办法
3330
查看次数