IOS Preferences data Access (Preferences folder)

Source: Internet
Author: User

/** * * * store data*/-(Ibaction) SAVEBTN: (ID) Sender {//preferences are specifically used to save configuration information for an application, and in general do not save other data in preferences//If you use System Preferences to store data, the default is to store it under the Preferences folder.//Preferences will save all the data in the same file//Get Nsuserdefaults ObjectNsuserdefaults *defaults =[Nsuserdefaults Standarduserdefaults]; //Save Data (if no synchronization occurs after setting up the data, the data is automatically saved to the Preferences folder at a later point in time)[Defaults setobject:@"LNJ"Forkey:@"name"]; [Defaults setobject:@"Mans"Forkey:@"Gender"]; [Defaults Setinteger: -Forkey:@" Age"]; [Defaults setdouble:10.1Forkey:@"Height"]; //let Nsuserdefaults save the data immediately[Defaults synchronize];}/** * Read data **/-(Ibaction) READBTN: (ID) Sender {//1. Get NsuserdefaultsNsuserdefaults *defaults =[Nsuserdefaults Standarduserdefaults]; //2. Get the saved data via NsuserdefaultsNSString *name = [Defaults objectforkey:@"name"]; intage = [Defaults integerforkey:@" Age"]; NSLog (@"%@", name); NSLog (@"%d", age);}

IOS Preferences data Access (Preferences folder)

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.