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

耗尽温柔 提交于 2019-12-06 16:13:25

问题


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..


回答1:


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
}


来源:https://stackoverflow.com/questions/14495747/how-to-show-alert-once-after-installing-the-app-in-ios-device

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!