Apple에서 홈 버튼을 사용할 수 있습니까?
아니요, 아직 없습니다. 에 사용할 수있는 API가 없습니다. 홈 버튼 상호 작용을 감지합니다.
기존의 app delegate
주기 함수 호출을 사용하여 원하는 모든 논리를 수행 할 수 있습니다.
- (void)applicationWillResignActive:(UIApplication *)application
{
// Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state.
// Use this method to pause ongoing tasks, disable timers, and throttle down OpenGL ES frame rates. Games should use this method to pause the game.
}
- (void)applicationDidEnterBackground:(UIApplication *)application
{
// Use this method to release shared resources, save user data, invalidate timers, and store enough application state information to restore your application to its current state in case it is terminated later.
// If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits.
}
- (void)applicationWillTerminate:(UIApplication *)application
{
// Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:.
}
홈 버튼을 탭하면 앱이 '배경'모드로 이동합니다. AppDelegate의 방법으로 논리를 작성할 수 있습니다 : - 'applicationDidEnterBackground' – pkc456
안녕하세요 @ pkc456'누르기 '는'누르기 '가 아니라'누르기 '를 의미합니다 - 클릭하지 않고 홈 버튼을 한 번 터치하기 만하면됩니다. – hinterbu