2013-02-13 2 views

답변

2

예, 물론입니다. 이러한 종류의 메소드의 경우 항상 AppDelegate.m 파일을 살펴 봐야합니다. 이 기본 방법이 있습니다

- (void)applicationWillEnterForeground:(UIApplication *)application 
{ 
    UIAlertView *alert = [[UIAlertView alloc]initWithTitle:@"Welcome back!" message:@"Welcome back!" delegate:nil cancelButtonTitle:nil otherButtonTitles:nil]; 
    [alert show]; 
} 

종류 중 일부를 ...

1

UIApplicationDelegate applicationWillEnterForeground: 메소드를 구현하십시오. 앱이 포 그라운드로 돌아올 때 호출됩니다.

관련 문제