使用未声明的类型 'MessagingDelegate'
Use of undeclared type 'MessagingDelegate'
我已经成功实施了 FCM。现在我想在设备上发送通知。我正在看 FCM 控制台本身给出的教程。
为此,我在教程中继续前进,但发现如下图所示的错误...
我不知道为什么会出现此错误。但是,因为我想删除该错误但失败了。我不知道他们为什么要来。 `我什至复制粘贴他们自己的示例项目应用程序委托方法。但我仍然收到图片中显示的那些错误。
我导入了以下东西
import UIKit
import UserNotifications
import Firebase
这是我的 pod 文件
# Uncomment the next line to define a global platform for your project
platform :ios, '9.0'
target 'MyProject' do
# Comment the next line if you're not using Swift and don't want to use dynamic frameworks
use_frameworks!
# Pods for MyProject
pod 'Firebase/Core'
end
有什么问题请指正
您只需要更新 pod 文件即可;
pod 'Firebase/Core'
pod 'Firebase/Messaging'
我已经成功实施了 FCM。现在我想在设备上发送通知。我正在看 FCM 控制台本身给出的教程。
为此,我在教程中继续前进,但发现如下图所示的错误...
我不知道为什么会出现此错误。但是,因为我想删除该错误但失败了。我不知道他们为什么要来。 `我什至复制粘贴他们自己的示例项目应用程序委托方法。但我仍然收到图片中显示的那些错误。
我导入了以下东西
import UIKit
import UserNotifications
import Firebase
这是我的 pod 文件
# Uncomment the next line to define a global platform for your project
platform :ios, '9.0'
target 'MyProject' do
# Comment the next line if you're not using Swift and don't want to use dynamic frameworks
use_frameworks!
# Pods for MyProject
pod 'Firebase/Core'
end
有什么问题请指正
您只需要更新 pod 文件即可;
pod 'Firebase/Core'
pod 'Firebase/Messaging'