Working with iOS app’s, we must know which environment user/tester/developer use. When we work in runtime with some features throw Xcode, we can detect development env with many approaches. Use different scheme, define environment variables then get it with ProcessInfo.processInfo.environment[“key”] code, or just use #if DEBUG condition. …