私は自分のアプリケーションにcoredataを実装しました。sqliteをcoredataにインポートする際の問題
NSFileManager *fileManager = [NSFileManager defaultManager];
NSString *documentsDirectory = [self applicationDocumentsDirectory];
NSString *writableDBPath = [documentsDirectory stringByAppendingPathComponent:@"iBountyHunter.sqlite"];
これは私にエラーを与える - [NSURL stringByAppendingPathComponentは:]:認識されていないセレクタが
インスタンス0x4d394a0' に送られた私は解決策を見つけることを試みたが、完璧な解決策を見つけることができませんでした。 これを解決するには? ありがとうございます。
このコードはエラーが生じません。しかし、DBファイルからのデータはロードされません。 – Harsh