Advertisement
Guest User

Untitled

a guest
Mar 27th, 2015
236
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. Recipe *cake = cakeRecipes.firstObject;
  2.  
  3. NSArray *ingredientNames = cake.ingredients.ingredient.name;
  4.  
  5. for (RecipeIngredient *i in cake.ingredients) {
  6. NSLog(@"%@ %@", i.amount, i.ingredient.name);
  7. }
  8.  
  9. Ingredient *celery = celeries.firstObject;
  10. NSArray *recipes = celery.recipes.recipe
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement