0
私は次のモデルがあります:このコアデータをどのように分けることができますか?
for member in self.markersArray {
var newCoordinate = NSEntityDescription.insertNewObject(forEntityName: "Coordinates", into: managedObjectContext)
newCoordinate.setValue(member.latitude, forKey: "latitude")
newCoordinate.setValue(member.longitude, forKey: "longitude")
}
var newCoordinate = NSEntityDescription.insertNewObject(forEntityName: "Coordinates", into: managedObjectContext)
newCoordinate.setValue(mapName, forKey: "mapName")
私はそれらを分離可能性がどのように私は、データの各チャンクを参照することができます:新しい値は以下のような保存になるだろうクリックし、各ボタンに
をマップ名で?
ありがとうございました。オプション1で最終座標を省略する必要があるのはなぜですか? – konyv12
もう一度、緯度/経度のある座標は5つありますが、名前はなく、名前は座標には緯度/経度がありません。彼らの間には関係はありません。オプション1では、すべての座標に緯度/経度**と**の名前が付いているので、無関係な単一座標は廃止されます。 – vadian