2016-09-13 8 views
0

Xcode 8 GMシードを使用してSwift 3でビルドされたアプリがあります。このアプリはキーボード拡張機能を備えています。私は、sqlite dbの場所に共有グループディレクトリを使用しており、データベースアクセスはフレームワークを使用して行われます。私がキーボードからSaveContext()を呼び出そうとするまでは、動作しています。タイトルエラーコード= 134030に記載されているエラーが発生します。メッセージに「保存中にエラーが発生しました」と表示され、追加情報はありません。根本的なエラーを得るための私のuserInfoはありません。コアデータエラーコード= 134030「保存中にエラーが発生しました」userInfoなし

デバッグ情報をダンプして、私が更新しようとしているのと同じアイテムの同じインスタンスを確認していることを確認しました。これは非常に簡単なアップデートで、何かが使用されたときに使用カウンタをインクリメントするだけです。キーボードエクステンションからの保存に問題はありますか?それらは読み取り専用モードで開きますか?

はここCoreDataStackのバルクです:キャッチで

let coreDataStack = CoreDataStack() 

public class CoreDataStack { 

public func saveContext() 
{ 
    let context = persistentContainer.viewContext 
    if context.hasChanges { 
     do { 
      try context.save() 
     } catch let error { 
      // Replace this implementation with code to handle the error appropriately. 
      // fatalError() causes the application to generate a crash log and terminate. You should not use this function in a shipping application, although it may be useful during development. 
      let nserror = error as NSError 
      fatalError("Unresolved error \(nserror), \(nserror.userInfo)") 
     } 
    } 
} 

// MARK: - Private 

lazy var managedObjectContext: NSManagedObjectContext = { 
    return self.persistentContainer.viewContext 
}() 

lazy var persistentContainer: NSPersistentContainer = { 
    /* 
    The persistent container for the application. This implementation 
    creates and returns a container, having loaded the store for the 
    application to it. This property is optional since there are legitimate 
    error conditions that could cause the creation of the store to fail. 
    */ 
    let modelUrl = Bundle(identifier: "com.myapp.AppDataKit")?.url(forResource: "MyApp-SE", withExtension: "momd") 
    let managedObjectModel = NSManagedObjectModel(contentsOf: modelUrl!)! 
    let container = NSPersistentContainer(name: "MyApp-SE", managedObjectModel: managedObjectModel) 
    container.persistentStoreDescriptions = [NSPersistentStoreDescription(url: try! FileManager.default.containerURL(forSecurityApplicationGroupIdentifier: "group.com.myapp")!.appendingPathComponent("MyAppSEData.sqlite"))] 

    container.loadPersistentStores(completionHandler: { (storeDescription, error) in 
     if let error = error as NSError? { 
      // Replace this implementation with code to handle the error appropriately. 
      // fatalError() causes the application to generate a crash log and terminate. You should not use this function in a shipping application, although it may be useful during development. 

      /* 
      Typical reasons for an error here include: 
      * The parent directory does not exist, cannot be created, or disallows writing. 
      * The persistent store is not accessible, due to permissions or data protection when the device is locked. 
      * The device is out of space. 
      * The store could not be migrated to the current model version. 
      Check the error message to determine what the actual problem was. 
      */ 
      fatalError("Unresolved error \(error), \(error.userInfo)") 
     } 
    }) 
    return container 
}() 

} // class CoreDataStack 

私は、エラーを調べていると私はそれから任意の詳細情報を取得することはできません。それをNSErrorにキャストした後も、userInfoが空のdictであるため、それでも役立たない。 私はまだエラー処理を実装していませんが、キーボードの項目を見ることができるので、検索に問題はありません。保存するときにだけクラッシュします。 私が更新をしようとしています場所は途方もなく簡単です:

item.useCount = NSNumber(value: item.useCount.intValue + 1) 
Logger.add(item.debugDescription) 
AppData.SaveContext() 

のAppData私は、デバイスのログを見てコアデータ

public class AppData { 
    public static func SaveContext() { 
     coreDataStack.saveContext() 
    } 
    ... 
} 

にアクセスするための静的関数を持つクラスであり、取得できませんでしたより良い情報があります。私は私のデータキットに2つの行を見ることができ、その後、2

0 libswiftCore.dylib 0x0000000100ab2848 0x100a80000 + 206920 
1 libswiftCore.dylib 0x0000000100ab2848 0x100a80000 + 206920 
libswiftCore.dylib

から誰でもXcode8でlibswiftcoreをsymbolicateする方法を知っていますか?

おかげで、 マイク

答えて

0

は、私はそれを考え出しました。それは、キーボードの「フルアクセスを許可する」オプションがオフになっていたためです。したがって、sqlite dbの更新を含め、共有グループフォルダに書き込めるようにするには、&のアプリをインストールし、最初に[フルアクセスを許可する]オプションを選択する必要があります。その後、Xcodeに戻り、拡張機能をデバッグモードで実行することができます。設定は保持され、すべてが機能するはずです。

マイク

関連する問題