我有一个iOS应用程序使用Firebase来发送通知。通知已经设置好并正在工作,现在我需要接收/处理通知以相应地显示视图控制器。我使用Objective C代码来调用我的C++代码,因此我的项目中有一个桥接头,它主要是用Swift编写的。
我使用了firebase文档中的this example(以及其他示例)。遵循UNUserNotificationCenterDelegate
协议并实现了它的功能。我也在我的AppDelegate
类中做了import UserNotifications
。
现在,当编译这些小的变化时,我得到了这两个错误
找不到"UNUuserNotificationCenterDelegate"的协议声明
未知类型名称"UNNotificationPresentationOptions"
对于生成的代码:
SWIFT_AVAILABILITY(ios,introduced=10)
@interface AppDelegate (SWIFT_EXTENSION(myapp)) <UNUserNotificationCenterDelegate>
- (void)userNotificationCenter:(UNUserNotificationCenter * _Nonnull)center willPresentNotification:(UNNotification * _Nonnull)notification withCompletionHandler:(void (^ _Nonnull)(UNNotificationPresentationOptions))completionHandler;
- (void)userNotificationCenter:(UNUserNotificationCenter * _Nonnull)center didReceiveNotificationResponse:(UNNotificationResponse * _Nonnull)response withCompletionHandler:(void (^ _Nonnull)(void))completionHandler;
@end
---更新
经过一些尝试和错误之后,似乎注解掉objC对Swift的所有调用以及声明为@objc
的Swift类型的所有使用使我的代码能够编译,桥接头不再抱怨了。这也包括在我所有的Objective C代码中注解掉#import "myapp-Swift.h"
(这可能就是桥接头不再抱怨的原因)不幸的是,在ObjC中停止使用Swift类型是不可行的,因为对于一个看起来很小的改变它将需要相当多的重写。
我想这可能在某种程度上表明了问题的起源,尽管我仍然不确定为什么或如何影响UNUserNotificationCenterDelegate
协议。
---结束更新
其他注意事项:
- 该错误源于一个Objective C++文件,我在其中导入了生成的
myapp-Swift.h
。 - 我试着把
#import <UserNotifications/UNUserNotificationCenter.h>
添加到我的桥接头中。Xcode没有抱怨include,所以它确实找到了它,但没有帮助。做#import <UserNotifications/UserNotifications.h>
也不起作用。 - 我尝试在
AppDelegate
本身和作为扩展符合UNUserNotificationCenterDelegate
,但两种情况下的错误是相同的。 - 桥接头包含在我的
.mm
文件中,错误就是从那里产生的。 - 一米十二纳米一X在一米十三纳米一X中。
- 一米十四的氮在一米十五的氮中。
- 我尝试将部署目标更改为较新的版本,但运气不佳。
- 我看了一下this question,它基本上和这个一样,但是没有任何效果。
- this question,但那不是我的用例。
下面是我的git diff
以供参考:
diff --git a/ios/myapp.xcodeproj/project.pbxproj b/ios/myapp.xcodeproj/project.pbxproj
index 1ac676e..ca3a814 100644
--- a/ios/myapp.xcodeproj/project.pbxproj
+++ b/ios/myapp.xcodeproj/project.pbxproj
@@ -1550,7 +1550,7 @@
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
HEADER_SEARCH_PATHS = "";
- IPHONEOS_DEPLOYMENT_TARGET = 9.3;
+ IPHONEOS_DEPLOYMENT_TARGET = 10.0;
MTL_ENABLE_DEBUG_INFO = YES;
ONLY_ACTIVE_ARCH = YES;
SDKROOT = iphoneos;
@@ -1601,7 +1601,7 @@
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
HEADER_SEARCH_PATHS = "";
- IPHONEOS_DEPLOYMENT_TARGET = 9.3;
+ IPHONEOS_DEPLOYMENT_TARGET = 10.0;
MTL_ENABLE_DEBUG_INFO = NO;
SDKROOT = iphoneos;
VALIDATE_PRODUCT = YES;
diff --git a/ios/myapp/AppDelegate.swift b/ios/myapp/AppDelegate.swift
index a1c9543..1010f99 100644
--- a/ios/myapp/AppDelegate.swift
+++ b/ios/myapp/AppDelegate.swift
@@ -7,6 +7,7 @@
//
import UIKit
+import UserNotifications
import Firebase
@UIApplicationMain
@@ -21,6 +22,21 @@ class AppDelegate: UIResponder, UIApplicationDelegate
FirebaseInterface.initialize()
ShoppingListInterface.loadLastSavedShoppingList()
+
+ if #available(iOS 10.0, *) {
+ // For iOS 10 display notification (sent via APNS)
+ UNUserNotificationCenter.current().delegate = self
+
+ let authOptions: UNAuthorizationOptions = [.alert, .badge, .sound]
+ UNUserNotificationCenter.current().requestAuthorization(
+ options: authOptions,
+ completionHandler: {_, _ in })
+ } else {
+ let settings: UIUserNotificationSettings =
+ UIUserNotificationSettings(types: [.alert, .badge, .sound], categories: nil)
+ application.registerUserNotificationSettings(settings)
+ }
+
return true
}
@@ -73,3 +91,46 @@ class AppDelegate: UIResponder, UIApplicationDelegate
// TODO: Save ShoppingList
}
}
+
+@available(iOS 10, *)
+extension AppDelegate : UNUserNotificationCenterDelegate
+{
+
+ // Receive displayed notifications for iOS 10 devices.
+ func userNotificationCenter(_ center: UNUserNotificationCenter,
+ willPresent notification: UNNotification,
+ withCompletionHandler completionHandler: @escaping (UNNotificationPresentationOptions) -> Void) {
+ let userInfo = notification.request.content.userInfo
+
+ // With swizzling disabled you must let Messaging know about the message, for Analytics
+ // Messaging.messaging().appDidReceiveMessage(userInfo)
+ // Print message ID.
+// if let messageID = userInfo[gcmMessageIDKey] {
+// print("Message ID: \(messageID)")
+// }
+
+ // Print full message.
+ print(userInfo)
+
+ // Change this to your preferred presentation option
+ completionHandler([[.alert, .sound]])
+ }
+
+ func userNotificationCenter(_ center: UNUserNotificationCenter,
+ didReceive response: UNNotificationResponse,
+ withCompletionHandler completionHandler: @escaping () -> Void) {
+ let userInfo = response.notification.request.content.userInfo
+ // Print message ID.
+// if let messageID = userInfo[gcmMessageIDKey] {
+// print("Message ID: \(messageID)")
+// }
+
+ // With swizzling disabled you must let Messaging know about the message, for Analytics
+ // Messaging.messaging().appDidReceiveMessage(userInfo)
+ // Print full message.
+ print(userInfo)
+
+ completionHandler()
+ }
+}
+// [END ios_10_message_handling]
diff --git a/ios/myapp/myapp-Bridging-Header.h b/ios/myapp/myapp-Bridging-Header.h
index 1b2d4c1..4973a15 100644
--- a/ios/myapp/myapp-Bridging-Header.h
+++ b/ios/myapp/myapp-Bridging-Header.h
@@ -11,6 +11,7 @@
myapp-Swift.h, remember to do #import <UIKit/UIKit.h> in the Objective C
header file.
*/
+#import <UserNotifications/UNUserNotificationCenter.h>
#import "ShoppingListWrapper.h"
#import "DBWrapper.h"
#import "FirebaseWrapper.h"
2条答案
按热度按时间k5ifujac1#
经过一段时间的挖掘,我找到了错误的来源。简单地做
使代码编译。其原因源于对桥接标头功能的混淆。我认为桥接标头既用于从Objective C调用Swift *,也用于从Swift * 调用Objective C。事实并非如此。
myapp-Bridging-Header.h
向Swift公开Objective C代码,以便能够从Swift调用Objective C。myapp-Swift.h
是自动生成的,并将任何标记有@objc
的Swift代码暴露给Objective C,以便能够从Objective C调用Swift。由于
UNUserNotificationCenterDelegate
协议的类型为NSObjectProtocol,因此协议声明位于Objective C中。因此,除非先执行#import <UserNotifications/UserNotifications.h>
,否则生成的myapp-Swift.h
不知道它。在这种情况下,甚至不需要在Swift中执行import UserNotifications
。ghg1uchk2#
我的Swift脚本正在使用UNUserNotificationCenterDelegate,我在UnityFramework-Swift上也收到此错误。h:无法找到"UNUserNotificationCenterDelegate" enter image description here的协议声明
你有什么想法吗?