前提・実現したいこと
Swiftで某ECサイトをスクレイピングして、自分がチェックしたい商品のセール情報を取得するアプリを作っています。
チェックしたい商品の情報をCoreDataに保存して、データを元に定期的にスクレイピングをしに行くというような想定をしています。
CoreDataで作成したEntityClassに値を代入するところで下記エラーがでてしまいます。
unrecognized selector sent to instance
発生している問題・エラーメッセージ
Swift
1UncaughtExceptionError: Crashed due to an uncaught exception 2 3KindleSaleChecker crashed due to an uncaught exception `NSInvalidArgumentException`. Reason: -[Item setTitle:]: unrecognized selector sent to instance 0x600000131380. 4 5================================== 6 7| RemoteHumanReadableError: Failed to update preview. 8| 9| The preview process appears to have crashed. 10| 11| Error encountered when sending 'previewInstances' message to agent. 12| 13| ================================== 14| 15| | RemoteHumanReadableError: The operation couldn’t be completed. (BSServiceConnectionErrorDomain error 3.) 16| | 17| | BSServiceConnectionErrorDomain (3): 18| | ==BSErrorCodeDescription: OperationFailed
該当のソースコード
Swift
1import SwiftUI 2import Alamofire 3import Kanna 4 5struct ItemDetail: View { 6 @State var asin:String = "" 7 @State var alert_price:String = "0" 8 private var item:Item = Item() 9 private var test:String = "" 10 var body: some View { 11 NavigationView{ 12 VStack{ 13 HStack{ 14 Text("ASIN") 15 TextField("Input Kindle item ASIN", text:self.$asin, onEditingChanged:{ _ in 16 }) 17 .textFieldStyle(RoundedBorderTextFieldStyle()) 18 .onAppear(){ 19 if let a = self.item.asin { 20 self.asin = a 21 } 22 } 23 } 24 HStack{ 25 Text("AlertPrice") 26 TextField("test formatter", value: $alert_price, formatter: NumberFormatter()) 27 .textFieldStyle(RoundedBorderTextFieldStyle()) 28 .keyboardType(.numberPad) 29 } 30 } 31 .padding(.all,10) 32 33 } 34 } 35 init(item:Item = Item()){ 36 self.item = Item(context: self.viewContext) 37 self.item.asin = "aaa" 38 } 39 40 func saveItem(){ 41 42 } 43}
試したこと
.xcdatamodelのEntityの設定のCodegenの設定の設定は基本Class Definitionに設定しています。
ためしにManual/Noneに設定してCreate NSManagedObject Subclassでクラスファイルを作成も試してみたのですが、かわりません。
調べてみるとEntityClassまたはそのなかのプロパティがうまくxcodeが認識していないせいか?と思っています。
CoreDataの扱いがまだしっかり理解できておらず初歩的なエラーかもしれません。
補足情報(FW/ツールのバージョンなど)
あなたの回答
tips
プレビュー