我正在使用Xcode 7测试版,我一直在尝试使用Cocoapods集成Parse iOS SDK。
我已经创建了bridging-header.h
,我已经导入了Parse #import <Parse/Parse.h>
。我已经在AppDelegate.swift
中调用了Parse。
当我尝试使用与Parse相关的任何类/对象时,会发生错误。实际上,我只是用Parse.setApplicationId(ParseAPI.AppID, clientKey: ParseAPI.ClientKey)
我收到以下错误:
Undefined symbols for architecture x86_64:
"_OBJC_CLASS_$_Parse", referenced from:
type metadata accessor for ObjectiveC.Parse in AppDelegate.o
ld: symbol(s) not found for architecture x86_64
clang: error: linker command failed with exit code 1 (use -v to see invocation)
我已经多次清理了项目complete clean build。
答案 0 :(得分:6)
使用Xcode 7 beta 4,我首先通过删除XCode项目中对它的所有引用来迁移使用Objective C桥接头。
接下来,我使用顶部的新行更新了我的Podfile:
use_frameworks!
然后我跑了
pod outdated
其中告诉我有更新版本的Parse和ParseCrashReporting(从1.7.5到1.7.5.3)。
然后我跑了pod update
在Xcode中打开我的项目,最后一步是在我使用Parse对象的文件中添加import语句,现在包含许多文件
import Parse
或
import ParseCrashReporting
有关use_frameworks的更多信息,请参阅http://www.innerexception.com/2015/05/cocoapods-useframeworks-means-bridging.html
答案 1 :(得分:1)
最后,我无法使用CocoaPods解决问题。
我正在使用 Xcode 7.2 beta 。
我所做的是,我按照Parse Doc中描述的步骤手动导入 Parse 和螺栓。
目前,我还有其他问题。 Xcode 7 未自动填充bridging-header
中的任何内容,一切正常,但未自动完成。
我不是唯一有这个问题的人 - &gt; reference
答案 2 :(得分:0)