Adding a disclaimer or accept terms at start of app but only once
Adding a disclaimer or accept terms at start of app but only once.
I found this code to do this but I dont know how to add it to appery
NSString *myString = [[NSUserDefaults standardUserDefaults] stringForKey:@"DidShowDisclaimer"]
if ([myString iEqualToString:@"YES"]) {
//show the view controller and once they have accepted save this key
[[NSUserDefaults standardUserDefaults] setValue:@"YES" forKey:@"DidShowDisclaimer"];
[[NSUserDefaults standardUserDefaults] synchronize]; //next time when the app is launched it will never execute this if condition
}
Any direction would be greatly appreciated