iOS swift 中的错误尝试使用 Ensembles
Posted
技术标签:
【中文标题】iOS swift 中的错误尝试使用 Ensembles【英文标题】:Errors in iOS swift trying to use Ensembles 【发布时间】:2015-06-07 08:05:27 【问题描述】:我使用 pod 成功添加了 Ensembles,并且编译时没有出现错误。现在我将代码添加到我的 AppDelegate.swift 文件中。构建失败并出现
Undefined symbols for architecture armv7:
"_OBJC_CLASS_$_CDEPersistentStoreEnsemble", referenced from:
__TMaCSo26CDEPersistentStoreEnsemble in AppDelegate.o
"_CDEMonitoredManagedObjectContextDidSaveNotification", referenced from:
__TFC8nicepal11AppDelegate11applicationfS0_FTCSo13UIApplication29didFinishLaunchingWithOptionsGSqGVSs10DictionaryCSo8NSObjectPSs9AnyObject____Sb in AppDelegate.o
"_OBJC_CLASS_$_CDEICloudFileSystem", referenced from:
__TMaCSo19CDEICloudFileSystem in AppDelegate.o
"_CDEICloudFileSystemDidDownloadFilesNotification", referenced from:
__TFC8nicepal11AppDelegate11applicationfS0_FTCSo13UIApplication29didFinishLaunchingWithOptionsGSqGVSs10DictionaryCSo8NSObjectPSs9AnyObject____Sb in AppDelegate.o
ld: symbol(s) not found for architecture armv7
clang: error: linker command failed with exit code 1 (use -v to see invocation)
我认为AppDelegate.swift中的相关代码是
var ensemble:CDEPersistentStoreEnsemble?
var ensembleCloudFileSystem:CDECloudFileSystem?
@UIApplicationMain
class AppDelegate: UIResponder, UIApplicationDelegate, CDEPersistentStoreEnsembleDelegate
func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool
let store_url = self.applicationDocumentsDirectory.URLByAppendingPathComponent("nicepal.sqlite")
let modelURL = NSBundle.mainBundle().URLForResource("nicepal", withExtension: "momd")!
ensembleCloudFileSystem = CDEICloudFileSystem(
ubiquityContainerIdentifier: "something"
)
ensemble = CDEPersistentStoreEnsemble(
ensembleIdentifier: "IDENTIFIER",
persistentStoreURL: store_url,
managedObjectModelURL:modelURL,
cloudFileSystem:ensembleCloudFileSystem
)
ensemble?.delegate = self
NSNotificationCenter.defaultCenter().addObserver(self, selector: "syncWithCompletion:", name: CDEMonitoredManagedObjectContextDidSaveNotification, object: nil)
NSNotificationCenter.defaultCenter().addObserver(self, selector: "syncWithCompletion:", name: CDEICloudFileSystemDidDownloadFilesNotification, object: nil)
return true
我的错误可能就在我面前,但我不知道。
我的 Bridging-Header.h 看起来像
#import <Foundation/Foundation.h>
#import <Ensembles/Ensembles.h>
#import "DropboxSDK.h"
#import "CDEDropboxCloudFileSystem.h"
【问题讨论】:
您是否添加了桥接头以将 Ensembles Objective-C 文件导入到 swift 中? 是的,我更新到上面显示了 如果 Swift 中的 Ensembles 不起作用,有人可以提出替代解决方案吗?我正在尝试将数据保存到 icloud,并与多个设备同步。核心数据会很好,但不是 100% 需要。 这是一个 swift 示例,它可能对您有所帮助github.com/oskarirauta/EnsembleExample - 我即将开始使用 swift 将 Ensembles 添加到我的应用程序中,希望一切顺利,您最终让它工作了吗? 【参考方案1】:很可能您的桥接头没有被读取。
在 Build Settings 下,确保 Swift Compiler - Code Generation 下的 Objective-C Bridging Header 构建设置有一个到 header 的路径。 该路径应该与您的项目相关,类似于在 Build Settings 中指定 Info.plist 路径的方式。在大多数情况下,您不需要修改此设置。
根据您的设置,也许您还需要在 Swift 文件中导入框架。
import Ensembles
【讨论】:
当我添加 'import Ensembles' 时,我收到“没有这样的模块 'Ensembles'”错误。 我的桥接头中有其他条目正在被读取和使用,例如 #import "SWRevealViewController.h" 其他 .h 文件在桥接头中工作。如果您在我的 AppDelegate.swift 文件中询问“import Ensembles.h”,它会出现“No such module 'Ensembles.h'”的错误 或许不需要导入。如前所述,这取决于您的设置 - 这取决于 Ensembles 的构建方式。 是的,如果我尝试在那里导入它,它不会改变我得到的错误。不幸的是,Ensembles 没有任何 Swift 文档或代码示例供像我这样的新用户使用。以上是关于iOS swift 中的错误尝试使用 Ensembles的主要内容,如果未能解决你的问题,请参考以下文章
iOS应用swift 3中的谷歌翻译rest api错误403