Key-value Observation

Source: Internet
Author: User

If you want to be a key observer, add the following code.

[Theappdelegate addobserver:self forkeypath:@ "Fido" Options:nskeyvalueobservingoptionold Context:nil];

The above method is defined in NSObject, which is actually similar to saying, "Send me a message whenever Fido changes", and the options and context decide what additional data will be sent with the message when the Fido changes. The triggering method procedure is as follows

-(void) Observevalueforkeypath: (NSString *) KeyPath Ofobject: (ID) object change: (nsdictionary *) Change context: (void *) Context

In this example, the keypath should be @ "Fido", object should be self-represented, and context is the parameter change of the context in the Add key observation is the dictionary that holds the old and new values of the Fido (a collection of key-value pairs)

Removing observers

[Theappdelegate removeobserver:self forkeypath:@ "Fido"];

Key-value Observation

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.