久久久久久久av_日韩在线中文_看一级毛片视频_日本精品二区_成人深夜福利视频_武道仙尊动漫在线观看

      <bdo id='1m4QY'></bdo><ul id='1m4QY'></ul>
  1. <tfoot id='1m4QY'></tfoot>
    <i id='1m4QY'><tr id='1m4QY'><dt id='1m4QY'><q id='1m4QY'><span id='1m4QY'><b id='1m4QY'><form id='1m4QY'><ins id='1m4QY'></ins><ul id='1m4QY'></ul><sub id='1m4QY'></sub></form><legend id='1m4QY'></legend><bdo id='1m4QY'><pre id='1m4QY'><center id='1m4QY'></center></pre></bdo></b><th id='1m4QY'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='1m4QY'><tfoot id='1m4QY'></tfoot><dl id='1m4QY'><fieldset id='1m4QY'></fieldset></dl></div>

    1. <small id='1m4QY'></small><noframes id='1m4QY'>

      <legend id='1m4QY'><style id='1m4QY'><dir id='1m4QY'><q id='1m4QY'></q></dir></style></legend>
    2. 在 iOS 模擬器中按下主頁按鈕時不會調用 applica

      applicationDidEnterBackground and applicationWillEnterForeground method are not called when pressed home button in iOS simulator(在 iOS 模擬器中按下主頁按鈕時不會調用 applicationDidEnterBackground 和 applicationWillEnterFore
    3. <i id='yEoN7'><tr id='yEoN7'><dt id='yEoN7'><q id='yEoN7'><span id='yEoN7'><b id='yEoN7'><form id='yEoN7'><ins id='yEoN7'></ins><ul id='yEoN7'></ul><sub id='yEoN7'></sub></form><legend id='yEoN7'></legend><bdo id='yEoN7'><pre id='yEoN7'><center id='yEoN7'></center></pre></bdo></b><th id='yEoN7'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='yEoN7'><tfoot id='yEoN7'></tfoot><dl id='yEoN7'><fieldset id='yEoN7'></fieldset></dl></div>
        • <bdo id='yEoN7'></bdo><ul id='yEoN7'></ul>

            <small id='yEoN7'></small><noframes id='yEoN7'>

              • <legend id='yEoN7'><style id='yEoN7'><dir id='yEoN7'><q id='yEoN7'></q></dir></style></legend>

                <tfoot id='yEoN7'></tfoot>
                  <tbody id='yEoN7'></tbody>
              • 本文介紹了在 iOS 模擬器中按下主頁按鈕時不會調用 applicationDidEnterBackground 和 applicationWillEnterForeground 方法的處理方法,對大家解決問題具有一定的參考價值,需要的朋友們下面隨著小編來一起學習吧!

                問題描述

                我需要在后臺和前臺完成一項長時間運行的任務.這會更新核心數據.因此,為了保持 UI 響應,我創建了另一個線程,在其中使用不同的 managedObjectContext(MOC).因此,在后臺和前臺都設置了一個計時器,并在狀態更改時適當地停用.在任務開始之前和任務完成之后,當我按下主頁按鈕時,它會正確調用兩個委托方法,但是當我按下主頁按鈕屏幕更改和 UI 掛起(變為空白)時,任務處于活動狀態,但兩個委托方法不是正確調用并且應用程序不會終止.我找不到發生這種情況的原因.如果有人可以提供幫助會很有幫助.

                I need a long running task to be done in background as well as in foreground. This updates the core data. So to maintain UI responsive I created an another thread where I use different managedObjectContext(MOC). So a timer is set in background as well as in foreground and is inactivated appropriately when state changes. Before the task is starting and after the task is completed when I press home button it calls the two delegate methods properly but during the task is active when I press home button screen changes and UI hangs (becomes blank) but the two delegate methods are not called properly and the app is not terminated. I could not find the reason why this happens so. It would be helpful if someone can help.

                我將附上所需的代碼:

                -(void) startTimerThread
                {
                    dispatch_async( dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_BACKGROUND, 0), ^{
                        // Add code here to do background processing
                        NSManagedObjectContext *context = [[NSManagedObjectContext alloc] init];
                        [context setPersistentStoreCoordinator:[(AppDelegate *)[[UIApplication sharedApplication] delegate] persistentStoreCoordinator]];
                        self.managedObjectContext = context;
                        [[NSNotificationCenter defaultCenter] addObserver:self
                                                                 selector:@selector(mergeChanges:)
                                                                     name:NSManagedObjectContextDidSaveNotification
                                                                   object:context];
                        NSLog(@"managedObjContext : %@
                ",self.managedObjectContext);
                        [self getDataFromFile];
                
                        dispatch_async( dispatch_get_main_queue(), ^{
                            // Add code here to update the UI/send notifications based on the
                            // results of the background processing
                
                            [[NSNotificationCenter defaultCenter] postNotificationName:@"ReloadAppDelegateTable" object:nil];
                            [context release];
                            [[NSNotificationCenter defaultCenter] removeObserver:self 
                                                                            name:NSManagedObjectContextDidSaveNotification
                                                                          object:context];
                        });
                    });
                }
                
                - (void)applicationDidEnterBackground:(UIApplication *)application
                {
                    NSLog(@"Background
                ");
                    [self.notificationTimer invalidate];
                    self.notificationTimer = nil;
                    UIApplication  *app = [UIApplication sharedApplication];
                    self.bgTask = [app beginBackgroundTaskWithExpirationHandler:^{
                        [app endBackgroundTask:bgTask]; 
                        bgTask = UIBackgroundTaskInvalid;
                    }];
                
                    //start location update timer and background timer 
                    self.timer = [NSTimer scheduledTimerWithTimeInterval:180 target:self
                                                                selector:@selector(startLocationServices) userInfo:nil repeats:YES];
                    self.locationManager.delegate = self; 
                    [self.locationManager startUpdatingLocation]; 
                
                    self.logDownloader.managedObjectContext = self.managedObjectContext;
                    NSLog(@"managedObjContext : %@
                ",self.logDownloader.managedObjectContext);
                    self.backgroundTimer = [NSTimer scheduledTimerWithTimeInterval:90 target:self.logDownloader selector:@selector(getDataFromFile) userInfo:nil repeats:YES];
                }
                
                - (void)applicationWillEnterForeground:(UIApplication *)application
                {
                    NSLog(@"Foreground
                ");
                    //invalidate background timer and location update timer
                    [self.timer invalidate];
                    [self.backgroundTimer invalidate];
                    self.timer = nil;
                    self.notificationTimer = nil;
                
                    self.logDownloader.managedObjectContext = self.managedObjectContext;
                    NSLog(@"managedObjContext : %@
                ",self.logDownloader.managedObjectContext);
                    [[NSNotificationCenter defaultCenter] postNotificationName:@"ReloadAppDelegateTable" object:nil];
                
                    self.notificationTimer = [NSTimer scheduledTimerWithTimeInterval:180 target:self.logDownloader selector:@selector(startTimerThread) userInfo:nil repeats:YES];
                }
                

                推薦答案

                原因applicationDidEnterBackground:applicationDidEnterForeground: 永遠不會被調用,因為這些方法與 應用程序不在后臺運行這個選項可以在你的***-info.plist中找到.如果此選項設置為 YES ,那么您的應用程序將永遠不會調用這些方法,因為當您使用已將選項設置為 YES 實例的應用程序按下主頁按鈕時,這些方法正在運行的應用程序將被終止,因此每次按下主頁按鈕然后選擇應用程序圖標時,都會創建一個新實例,因此它正在使用 applicationWillTerminate:.

                The reason why applicationDidEnterBackground: and applicationDidEnterForeground: are never called is because these methods are used in joint with Application does not run in background this option can be found in your ***-info.plist. If this option is set to YES than your app will never call these methods, because these when you press the home button with an app that has set the option to YES the instance of the app that is running will get terminated so everytime you press the home button and then select the app icon a new instance is being created so it is using applicationWillTerminate:.

                Kirti mali 所說的方法也將是不正確的方法來使用你想要的,原因是 applicationDidBecomeActive:applicationWillResignActive: 用于接聽電話等情況.正在運行的實例不會被終止,也不會被發送到后臺.該實例會暫停,直到用戶完成該調用,然后它將再次變為活動狀態.

                The methods that Kirti mali has said would also be the incorrect methods to use for want you are after, the reason being is that applicationDidBecomeActive: and applicationWillResignActive: are used when something like when you answer a phone call. The instance running is not terminated neither is it sent to the background. The instance is paused until the user has finished on that call when it will become active again.

                因此,如果您希望應用程序在后臺運行,解決方案是更改選項應用程序不在后臺運行".在 ***-info.plist 中為 NO 只是 applicationDidBecomeActive:applicationWillResignActive: 是這些方法的錯誤使用方式.

                So the solution to this would be if you want the app to run in background would be to change the option "Application does not run in background" in the ***-info.plist to be NO just applicationDidBecomeActive: and applicationWillResignActive: is the wrong way for these methods to be used.

                請參閱 上的蘋果文檔UIApplicationDelegate 以更好地理解這些方法.

                Please see the apple documentation on UIApplicationDelegate to get a better understanding of these methods.

                這篇關于在 iOS 模擬器中按下主頁按鈕時不會調用 applicationDidEnterBackground 和 applicationWillEnterForeground 方法的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,也希望大家多多支持html5模板網!

                【網站聲明】本站部分內容來源于互聯網,旨在幫助大家更快的解決問題,如果有圖片或者內容侵犯了您的權益,請聯系我們刪除處理,感謝您的支持!

                相關文檔推薦

                Help calculating X and Y from Latitude and Longitude in iPhone(幫助從 iPhone 中的緯度和經度計算 X 和 Y)
                CLLocation returning negative speed(CLLocation 返回負速度)
                Calculate bearing between two locations (lat, long)(計算兩個位置之間的方位角(緯度、經度))
                watchPosition() vs getCurrentPosition() with setTimeout(watchPosition() 與 getCurrentPosition() 與 setTimeout)
                iOS 6 breaks GeoLocation in webapps (apple-mobile-web-app-capable)(iOS 6 破壞了 webapps 中的 GeoLocation (apple-mobile-web-app-capable))
                Determine iPhone user#39;s country(確定 iPhone 用戶所在的國家)

                • <legend id='x05Wd'><style id='x05Wd'><dir id='x05Wd'><q id='x05Wd'></q></dir></style></legend>
                • <tfoot id='x05Wd'></tfoot>

                    <tbody id='x05Wd'></tbody>
                  • <bdo id='x05Wd'></bdo><ul id='x05Wd'></ul>
                  • <i id='x05Wd'><tr id='x05Wd'><dt id='x05Wd'><q id='x05Wd'><span id='x05Wd'><b id='x05Wd'><form id='x05Wd'><ins id='x05Wd'></ins><ul id='x05Wd'></ul><sub id='x05Wd'></sub></form><legend id='x05Wd'></legend><bdo id='x05Wd'><pre id='x05Wd'><center id='x05Wd'></center></pre></bdo></b><th id='x05Wd'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='x05Wd'><tfoot id='x05Wd'></tfoot><dl id='x05Wd'><fieldset id='x05Wd'></fieldset></dl></div>

                          <small id='x05Wd'></small><noframes id='x05Wd'>

                          主站蜘蛛池模板: 日韩视频在线免费观看 | 男人天堂999 | 成人精品一区二区三区中文字幕 | 亚洲九九| 青娱乐av | 欧美成人一区二区 | 综合视频在线 | 欧美一区二区三区在线播放 | 国产99视频精品免费视频7 | 日韩三级 | 欧美黑人国产人伦爽爽爽 | 国产精品九九九 | 一区二区中文 | 中文av在线播放 | 在线一区视频 | 亚洲高清久久 | a级片播放 | 国产综合一区二区 | 日本aⅴ中文字幕 | 日韩精品久久一区二区三区 | 毛片免费视频 | 日韩在线小视频 | 97热在线 | 日韩视频中文字幕 | 99久久精品视频免费 | 欧美亚洲高清 | 精品久久久久国产免费第一页 | 日本三级在线网站 | 97成人免费 | 美女福利网站 | 91av在线免费观看 | 国产成人a亚洲精品 | 自拍偷拍中文字幕 | 涩色视频在线观看 | 亚洲第一在线 | 中文字幕蜜臀av | 国产精品成人一区 | 亚洲狠狠丁香婷婷综合久久久 | 中文字幕亚洲区一区二 | 日韩欧美成人一区二区三区 | 国产一级一级毛片 |