0

我只是 swift 的新手,想知道将计算属性用于给定示例中的常量是否是一个不错的选择。

在 iOS 开发中,我们通常在 .pch 文件中为目标中的通知键字符串定义常量。那么下面的选项有意义吗?

struct NotificationsKey {
    static var CreateProfilePageDidMoved:String {return "CreateProfilePageDidMoved"}
}
4

1 回答 1

1

无需计算您的示例或var. 而是这样做:

struct NotificationsKey {
    static let CreateProfilePageDidMoved = "CreateProfilePageDidMoved"
}
于 2016-03-25T05:19:58.793 回答