Measure the test taker's knowledge about how to open a View.

Source: Internet
Author: User

Original Problem description: I used NSUserDefault to detect the application being opened for the first time: [plain] BOOL didRunBefore = [[NSUserDefaults standardUserDefaults] boolForKey: @ "didRunBefore"]; if (! DidRunBefore) {// Your Launch Code [[NSUserDefaults standardUserDefaults] setBool: YES forKey: @ "didRunBefore"]; [[NSUserDefaults standardUserDefaults] synchronize];} the problem is, I need to add an Alert for each view to describe the attributes included in it, as long as it appears when the application is clicked for the first time. Solution: As an object-oriented programmer, a common method can be used: [plain] + (BOOL) checkWhetherRunBefore :( NSString *) key {return [[NSUserDefaults standardUserDefaults] boolForKey: key] ;}+ (void) hasRunForMyClass :( NSString *) key {[[NSUserDefaults standardUserDefaults] setBool: YES forKey: key]; [[NSUserDefaults standardUserDefaults] synchronize];} in ViewController, add the following code in viewWillAppear or viewDidAppear: [plain] www.2cto.com-(voi D) viewWillAppear {if (! [HelpController checkWhetherRunBefore: NSStringFromClass ([self class]) {// do your thing [HelpController hasRunForMyClass: NSStringFromClass ([self class])]}

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.