-1

i want to take a picture an save it on NSUserDefaults an then show taht image on other view its that posible ?

  • 1
    Yes, it is possible, but you shouldn't do it. Save to the file system, not to the user defaults. – matt Nov 03 '15 at 22:16

1 Answers1

2

Yes, it is possible, but you shouldn't do it. Save an image to the file system, not to the user defaults. It is data, not a preference. And it is relatively huge.

matt
  • 515,959
  • 87
  • 875
  • 1,141
  • thats a good point, dou yo have any links or tutoral on saving an image to the file system im new on ios developer – ivan rodriguez Nov 03 '15 at 22:22
  • What have you tried/googled/researched? Twenty seconds on google got me this, which I think is all you need. http://stackoverflow.com/questions/6821517/save-an-image-to-application-documents-folder-from-uiview-on-ios – Grimxn Nov 03 '15 at 22:29