使用计算属性作为常量

时间:2016-03-25 05:11:09

标签: swift constants computed-properties

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

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

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

1 个答案:

答案 0 :(得分:1)

您无需计算您的示例或var。而是做:

struct NotificationsKey {
    static let CreateProfilePageDidMoved = "CreateProfilePageDidMoved"
}