Skip to content

Commit b81fc0e

Browse files
chore(docs): Update Extension Helper Docs (#17327)
1 parent cc7d28a commit b81fc0e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docs/cloud-messaging/receive.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -529,13 +529,13 @@ At this point, everything should still be running normally. The final step is in
529529
```objc
530530
#import "NotificationService.h"
531531
#import "FirebaseMessaging.h"
532-
#import "FirebaseAuth.h" // Add this line if you are using FirebaseAuth phone authentication
532+
#import <FirebaseAuth/FirebaseAuth-Swift.h> // Add this line if you are using FirebaseAuth phone authentication
533533
#import <UIKit/UIKit.h> // Add this line if you are using FirebaseAuth phone authentication
534534
535-
@interface NotificationService ()
535+
@interface NotificationService () <NSURLSessionDelegate>
536536
537-
@property (nonatomic, strong) void (^contentHandler)(UNNotificationContent *contentToDeliver);
538-
@property (nonatomic, strong) UNMutableNotificationContent *bestAttemptContent;
537+
@property(nonatomic) void (^contentHandler)(UNNotificationContent *contentToDeliver);
538+
@property(nonatomic) UNMutableNotificationContent *bestAttemptContent;
539539
540540
@end
541541

0 commit comments

Comments
 (0)