我的练习应用程序有以下实体关系。
我坚持使用由多个实体组成的新配方的保存部分。
我有RecipeIngredient中间(联合)实体的原因是我需要一个额外的属性,它将按配方存储不同数量的成分。
这个实现显然没有为每个新成分分配金额值,因为我不确定是否需要初始化这个RecipeIngredient实体,或者即使我这样做了,我也不知道如何将它们粘合在一起作为一个食谱。
@IBAction func saveTapped(sender: UIBarButtonItem) {
// Reference to our app delegate
let appDel: AppDelegate = UIApplication.sharedApplication().delegate as AppDelegate
// Reference moc
let context: NSManagedObjectContext = appDel.managedObjectContext!
let recipe = NSEntityDescription.entityForName("Recipe", inManagedObjectContext: context)
let ingredient = NSEntityDescription.entityForName("Ingredient", inManagedObjectContext: context)
// Create instance of data model and initialise
var newRecipe = Recipe(entity: recipe!, insertIntoManagedObjectContext: context)
var newIngredient = Ingredient(entity: ingredient!, insertIntoManagedObjectContext: context)
// Map properties
newRecipe.title = textFieldTitle.text
newIngredient.name = textViewIngredient.text
...
// Save Form
context.save(nil)
// Navigate back to root vc
self.navigationController?.popToRootViewControllerAnimated(true)
}
答案 0 :(得分:5)
我不确定是否需要初始化这个RecipeIngredient实体,或者即使我这样做了,我也不知道如何将它们作为一个配方粘合在一起。
您需要像创建任何其他实体一样创建RecipeIngredient实例。你可以完成与你所做的基本相同的事情,例如:食谱:
// instantiate RecipeIngredient
let recipeIngredient = NSEntityDescription.entityForName("RecipeIngredient", inManagedObjectContext: context)
let newRecipeIngredient = RecipeIngredient(entity:recipeIngredient!, insertIntoManagedObjectContext:context)
// set attributes
newRecipeIngredient.amount = 100
// set relationships
newRecipeIngredient.ingredient = newIngredient;
newRecipeIngredient.recipe = newRecipe;
请注意,由于您为ingredient
和recipe
提供了反向关系,因此您无需将newRecipeIngredient
添加到newRecipe.ingredients
或添加newRecipeIngredient
} newIngredient.recipes
。