Skip to content

Instantly share code, notes, and snippets.

View hishd's full-sized avatar
💭
I may be slow to respond.

Hishara Dilshan hishd

💭
I may be slow to respond.
View GitHub Profile
@hishd
hishd / AppConfig.swift
Created March 27, 2024 06:35
Enabling debugging mode on iOS Apps
struct AppConfig {
static func toggleDebugMode() -> Bool {
guard !UserDefaults.standard.isDebuggingEnabled else {
return false
}
enableDebugMode()
func enableDebugMode() -> Never {
UserDefaults.standard.isDebuggingEnabled = true