使用未声明的类型“ MessagingDelegate”

时间:2018-07-20 11:43:35

标签: ios firebase firebase-cloud-messaging swift4 xcode9

我已经成功实施了FCM。现在,我想在设备上发送通知。我愚弄了FCM控制台本身提供的教程。

为此,我在本教程中前进了,但是发现了如下图所示的错误...

enter image description here

我不知道为什么会收到此错误。但是,因为我想删除该错误,但失败了。我不知道他们为什么要来。我什至将粘贴程序复制到自己的示例项目应用程序委托方法中。但是我仍然收到我在图片中显示的那些错误。

我已导入以下内容

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

什么是问题,请纠正

1 个答案:

答案 0 :(得分:3)

您只需要更新pod文件;

pod 'Firebase/Core'
pod 'Firebase/Messaging'