如何在iOS中的设备之间发送Firebase推送通知

时间:2019-09-16 11:31:42

标签: swift firebase firebase-cloud-messaging

我成功集成了Firebase。当我出于测试目的使用来自Firebase站点的云消息发送通知时,该通知已被设备接收。但是在我的应用中,我需要使用Firebase将通知从一台设备发送到另一台设备。 斯威夫特4,Xcode 10 这是一些代码:

import UIKit

class RoundedView: UIView {

    override func layoutSubviews() {
        super.layoutSubviews()

        layer.cornerRadius = frame.height / 2
    }
}

1 个答案:

答案 0 :(得分:0)

如果要在设备之间发送推送通知,则必须使用Firebase Cloud功能。如果遵循示例代码,实现起来并不难。检查文档here,然后可以从其github回购中检查样本。