- August 12, 2025
- Mins Read
Welcome to LocalConsole! This Swift Package makes on-device debugging easy with a convenient PiP-style console that can display items in the same way print()
will in Xcode. This tool can also dynamically display view frames and restart SpringBoard right from your live app.
In your Xcode project, navigate to File > Swift Packages > Add Package Dependancy…
Paste the following into the URL field: https://github.com/duraidabdul/LocalConsole/
Once the package dependancy has been added, import LocalConsole and create an easily accessible global instance of LCManager.shared
.
import LocalConsole
let consoleManager = LCManager.shared
// Activate the console view.
consoleManager.isVisible = true
// Deactivate the console view.
consoleManager.isVisible = false
// Print items to the console view.
consoleManager.print(“Hello, world!”)
// Clear console text.
consoleManager.clear()
// Copy console text.
consoleManager.copy()
// Change the console view font size.
consoleManager.fontSize = 5
Recognize your user's voice elegantly without having to figure out authorization and audio engines. SwiftSpeech Examples Features Installation Getting Started ...
Example To run the example project, clone the repo, and run pod install from the Example directory first. Requirements iOS 14.0 Installation ...
SlidingRuler is a Swift package containing a SwiftUI control that acts like an linear infinite slider or a finite, more precise ...
SkeletonUI aims to bring an elegant, declarative syntax to skeleton loading animations. Get rid of loading screens or spinners and ...