| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- /*
- * Copyright 2017 Google
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
- #import <FirebaseCore/FIRLogger.h>
- #import "FIRCore+InAppMessaging.h"
- #import "FIRIAMDisplayCheckOnAppForegroundFlow.h"
- #import "FIRIAMDisplayExecutor.h"
- @implementation FIRIAMDisplayCheckOnAppForegroundFlow
- - (void)start {
- FIRLogDebug(kFIRLoggerInAppMessaging, @"I-IAM500002",
- @"Start observing app foreground notifications for rendering messages.");
- [[NSNotificationCenter defaultCenter] addObserver:self
- selector:@selector(appWillEnterForeground:)
- name:UIApplicationWillEnterForegroundNotification
- object:nil];
- }
- - (void)appWillEnterForeground:(UIApplication *)application {
- FIRLogDebug(kFIRLoggerInAppMessaging, @"I-IAM500001",
- @"App foregrounded, wake up to check in-app messaging.");
- // Show the message with 0.5 second delay so that the app's UI is more stable.
- // When messages are displayed, the UI operation will be dispatched back to main UI thread.
- dispatch_after(dispatch_time(DISPATCH_TIME_NOW, 500 * (int64_t)NSEC_PER_MSEC),
- dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0ul), ^{
- [self.displayExecutor checkAndDisplayNextAppForegroundMessage];
- });
- }
- - (void)stop {
- FIRLogDebug(kFIRLoggerInAppMessaging, @"I-IAM500004",
- @"Stop observing app foreground notifications.");
- [[NSNotificationCenter defaultCenter] removeObserver:self];
- }
- - (void)dealloc {
- [[NSNotificationCenter defaultCenter] removeObserver:self];
- }
- @end
|