我不想在用戶按Home按鈕時關閉我的應用程序。取而代之,我需要返回到重新打開應用程序後離開的相同頁面。主頁按鈕事件
Q
主頁按鈕事件
-3
A
回答
1
如果你正在使用其他視圖控制器,而不是使用此功能關閉按鈕。
對於舊版本:
-(IBAction)Close:(id)sender{
[self dismissModalViewControllerAnimated:YES];
}
對於iOS6的:
-(IBAction)closebtn:(id)sender{
{
[self dismissViewControllerAnimated:YES completion:Nil];
}
它會自動將您重定向到從那裏導航到當前視圖控制器視圖控制器。
0
0
這是你的選擇
在你的應用程序代理:
- (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:.
}
- (void)applicationWillEnterForeground:(UIApplication *)application
{
// Called as part of the transition from the background to the inactive state; here you can undo many of the changes made on entering the background.
}
- (void)applicationDidBecomeActive:(UIApplication *)application
{
// Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface.
}
這些方法稱爲在特定的順序,當用戶按下HOME鍵。你的應用程序不會停止。它在後臺進行。您可以在這些函數中編寫邏輯,以確保您的應用程序在停止的同一個類中打開。
0
iPhone/iPad主頁按鈕始終關閉當前應用程序並返回到主屏幕。這種行爲不能被應用程序覆蓋。
0
我假設你正在談論物理主頁按鈕。 Apple沙盒除了自己的應用程序之外的所有應用程序,因此您無法訪問iDevices的某些方面,包括所有硬件按鈕。如果你想申請回當用戶離開其進入後臺後,您可以使用該方法在委託文件,即
- (void)applicationDidEnterBackground:(UIApplication *)application {// your code}
如果您的問題涉及只是在返回給用戶一個離開的地方不同類型的感覺(以及物理主頁按鈕)...
就像Zen說的那樣,如果你想要填充某個文本字段(比如說下一次用戶去填充它)出。即
NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults];
if (!defaults) {
[self setDefaults]; // where setDefaults is just a method that set some random values
}
int apples = [[NSUserDefaults standardUserDefaults] integerForKey:@"apples"];
if (apples == 0) {
apples = 2;
}
// fill in the interface values for xibApples, a UITextField outlet
[xibApples setText:[NSString stringWithFormat:@"%d", apples]];
相關問題
- 1. iphone主頁按鈕事件
- 2. 膠水主頁按鈕事件
- 3. 手柄主頁按鈕單擊事件
- 4. ios雙擊主頁按鈕事件
- 5. 塊主頁按鈕
- 6. ViewDidAppear主頁按鈕
- 7. 按下iPhone主頁按鈕
- 8. Android主頁按鈕長按
- 9. 主類中的處理按鈕事件
- 10. 主幹單選按鈕更改事件
- 11. Bootstrap主題和asp.net按鈕事件
- 12. 如何模擬iOS 7中的主頁按鈕事件(越獄)?
- 13. 使用主頁按鈕時iOS上的PageVisibility API事件
- 14. 按鈕返回=動作按鈕主頁
- 15. 事件按鈕
- 16. iPhone SDK主頁按鈕
- 17. 創建主頁按鈕
- 18. 返回/主頁按鈕[Java]
- 19. Asysctask和主頁按鈕
- 20. 通知和主頁按鈕
- 21. 在Android的主頁按鈕?
- 22. ActionBar和CustomView - 主頁按鈕
- 23. 主頁按鈕偵聽器
- 24. Facebook'like'按鈕 - ASPX主頁
- 25. 修改pentaho主頁按鈕
- 26. 下一個按鈕....主頁
- 27. 禁用主頁按鈕
- 28. 想要做幾件事情,如果用戶按下主頁按鈕
- 29. 任何可能跟蹤在電話中的主頁按鈕按下事件
- 30. 如何處理主頁面按鈕單擊內容頁面中的事件?
你能解釋一下嗎? –
如果你正在談論iPhone的家庭按鈕,那麼它不可能,如果你正在談論你的應用程序主頁按鈕,然後請解釋更多關於你的問題。 –
我正在談論iphone主頁按鈕。 – karthi