네임 스페이스로서의 구조
IMO는 이러한 유형의 상수를 처리하는 가장 좋은 방법은 Struct를 만드는 것입니다.
struct Constants {
static let someNotification = "TEST"
}
그런 다음 예를 들어 코드에서 다음과 같이 호출하십시오.
print(Constants.someNotification)
중첩
더 나은 조직을 원한다면 세그먼트 하위 구조를 사용하는 것이 좋습니다.
struct K {
struct NotificationKey {
static let Welcome = "kWelcomeNotif"
}
struct Path {
static let Documents = NSSearchPathForDirectoriesInDomains(.DocumentDirectory, .UserDomainMask, true)[0] as String
static let Tmp = NSTemporaryDirectory()
}
}
그런 다음 예를 들어 사용할 수 있습니다. K.Path.Tmp
실제 예
이것은 단지 기술적 인 해결책이며 내 코드의 실제 구현은 다음과 같습니다.
struct GraphicColors {
static let grayDark = UIColor(0.2)
static let grayUltraDark = UIColor(0.1)
static let brown = UIColor(rgb: 126, 99, 89)
// etc.
}
과
enum Env: String {
case debug
case testFlight
case appStore
}
struct App {
struct Folders {
static let documents: NSString = NSSearchPathForDirectoriesInDomains(.documentDirectory, .userDomainMask, true)[0] as NSString
static let temporary: NSString = NSTemporaryDirectory() as NSString
}
static let version: String = Bundle.main.object(forInfoDictionaryKey: "CFBundleShortVersionString") as! String
static let build: String = Bundle.main.object(forInfoDictionaryKey: "CFBundleVersion") as! String
// This is private because the use of 'appConfiguration' is preferred.
private static let isTestFlight = Bundle.main.appStoreReceiptURL?.lastPathComponent == "sandboxReceipt"
// This can be used to add debug statements.
static var isDebug: Bool {
#if DEBUG
return true
#else
return false
#endif
}
static var env: Env {
if isDebug {
return .debug
} else if isTestFlight {
return .testFlight
} else {
return .appStore
}
}
}