Use the iOS emulator to store data in a local sandbox and read detailed steps from the sandbox

Source: Internet
Author: User

Using the IO emulator, the root path of the application sandbox is:/users/apple/library/application support/iphone simulator/6.0/applications (6.0 for emulator version)

1. Get the App sandbox directory

<1> using the sandbox root to stitch the "Documents" string

NSString * home = Nshomedirectory ();

NSString * documents = [Home stringbyappendingpathcomponent:@ "documents"];

You can get the sandbox directory by printing documents.

(The above method is not recommended, the new version of the operating system will change the directory name, resulting in the file cannot be found)

<2> using the Nssearchpathfordirectoriesindomains function

Nsarray * array = nssearchpathfordirectoriesindomains (Nsdocumentdirectory,nsuserdomainmask,no);

NSString * documents = [array objectatindex:0];

2. Write the data into the plist file (nsstring\ dictionary \ Array \nsdata\nsnumber)

Nsarray *data = @[@ "Tom", @10, @ "16"];
NSString *filepath = [DocPath stringbyappendingpathcomponent:@ "Data.plist"];
[Data Writetofile:filepath Atomically:yes]; Permanently saved in the sandbox

3. Read the plist file in the sandbox

NSString *home = Nshomedirectory (); Get the Sandbox root path
NSString *docpath = [Home stringbyappendingpathcomponent:@ "Documents"]; Stitching document Path
NSString *filepath = [DocPath stringbyappendingpathcomponent:@ "Data.plist"]; Get file path
Nsarray *data = [Nsarray Arraywithcontentsoffile:filepath]; Start reading data
NSLog (@ "%@", data);

 

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.