我只是 swift 的新手,想知道将计算属性用于给定示例中的常量是否是一个不错的选择。
在 iOS 开发中,我们通常在 .pch 文件中为目标中的通知键字符串定义常量。那么下面的选项有意义吗?
struct NotificationsKey {
static var CreateProfilePageDidMoved:String {return "CreateProfilePageDidMoved"}
}
我只是 swift 的新手,想知道将计算属性用于给定示例中的常量是否是一个不错的选择。
在 iOS 开发中,我们通常在 .pch 文件中为目标中的通知键字符串定义常量。那么下面的选项有意义吗?
struct NotificationsKey {
static var CreateProfilePageDidMoved:String {return "CreateProfilePageDidMoved"}
}