How can I can check if the user has downloaded my app before a specific date? I have this code in the viewDidLoad:
if([[NSUserDefaults standardUserDefaults]boolForKey:@"FirstLaunch"]){
}
else{
[[NSUserDefaults standardUserDefaults]setBool:YES forKey:@"FirstLaunch"];
[[NSUserDefaults standardUserDefaults]synchronize];
}
I there any way for my to use that NSUserDefaults and make a method like :
If(Firstlaunch>today){
remove iAd
}
any code would be greatly appreciated! sorry if the question is dumb..