Parimala
Parimala

Reputation: 131

How to show alert once after installing the app in ios device

How to show an alert only once at the start of an application after installing the application on device or on simulator until I delete it from my device. Is it possible tell me..

Upvotes: 1

Views: 1433

Answers (1)

Nikita P
Nikita P

Reputation: 4246

You can do it this way:

if (![[NSUserDefaults standardUserDefaults] boolForKey:@"HasLaunchedOnce"]) {
   //first launch
   //show your alert
   [[NSUserDefaults standardUserDefaults] setBool:YES forKey:@"HasLaunchedOnce"];
   [[NSUserDefaults standardUserDefaults] synchronize];
}
else
{
    // app already launched
}

Upvotes: 10

Related Questions