0

I am creating a program that will be submitted to AppStore to be distributed on Mac OS. The application needs to store several user settings in an xml file on file system.

I am using Xamarin.Mac (aka Monomac) platform to create a program.

Where is my app supposed to save application User-specific data on filesystem?

Perhaps, Xamarin.Mac already has some classes to provide developer with an encapsulated way to access these.

Maxim V. Pavlov
  • 10,303
  • 17
  • 74
  • 174
  • 1
    package: 'MonoMac.Foundation' provides NSUserDefaults that would help save new preferences or access existing ones. http://code.tutsplus.com/tutorials/ios-sdk-working-with-nsuserdefaults--mobile-6039 – Gaurav Pal Feb 24 '15 at 23:21

1 Answers1

0

You can find app preferences in $HOME/Library/Preferences folder.

Gaurav Pal
  • 141
  • 7