UIAlertView показать, когда приложение загружается, откройте - PullRequest
0 голосов
/ 19 января 2011

Как отобразить оповещение при открытии приложения, загрузить ...

Как и каждый раз, когда пользователь открывает приложение, он видит предупреждение ....

Ответы [ 3 ]

1 голос
/ 19 января 2011

записать предупреждение в следующем методе appDelegate,

    - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
      UIAlertView *alert_View = [[[UIAlertView alloc] initWithTitle:@"Your Title" message:@"Your Message" delegate:self cancelButtonTitle:nil otherButtonTitles:@"YES",@"NO",nil] autorelease];
    [alert_View show];
}
0 голосов
/ 19 января 2011

@ 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];

Надеюсь, это поможет вам!

0 голосов
/ 19 января 2011

Показать представление оповещения в классе делегата приложения, в applicationDidFinishLaunching: и в applicationWillEnterForeground:

...