1.12.0
You can now add a custom menu element to your console as a submenu!
let action = UIAction(title: "My Action") { _ in
LCManager.shared.print("Hello, world!")
}
let customMenu = UIMenu(
title: "Quick Actions",
image: UIImage(systemName: "wand.and.stars"),
children: [action]
)
LCManager.shared.menu = customMenu