gpt4 book ai didi

swift - Swift 枚举中的 Notification.Name 实例

转载 作者:搜寻专家 更新时间:2023-11-01 06:38:17 25 4
gpt4 key购买 nike

我在 View Controller 中有几个 notifications,我想将它们的名称保存在 Enum 中:

enum KeyboardNotifications : Notification.Name{
case didAppear = Notification.Name(rawValue:"cfisher.keyboardDidAppear")
}

不幸的是,这不起作用,我得到一个编译错误:枚举大小写的原始值必须是文字值

有什么办法吗?

顺便说一句,我正在使用 Swift 3

最佳答案

这样,

  enum Notes: String {

case note1 = "note1"
case note2 = "note2"

var notification : Notification.Name {
return Notification.Name(rawValue: self.rawValue )
}
}

class ViewController: UIViewController {

override func viewDidLoad() {
super.viewDidLoad()

NotificationCenter.default.post(name: Notes.note2.notification ,object: nil, userInfo: nil)
}
}

关于swift - Swift 枚举中的 Notification.Name 实例,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38883245/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com