@ Rafeel поместите это UIAlertView
в ваш didFinishLaunchingWithOptions
метод вашего AppDelegate, и вы всегда получите UIAlertView
, когда ваше приложение запустит
UIAlertView *confirmAlertView=[[UIAlertView alloc]initWithTitle:@"Saved" message:@"Want to save!!" delegate:self cancelButtonTitle:@"OK" otherButtonTitles:@"Cancel",nil];
[confirmAlertView show];
[confirmAlertView release];
Надеюсь, это поможет вам!