VisualDebugger
VisualDebugger copied to clipboard
The most elegant and easiest way to visual you data in playground
VisualDebugger
The most elegant and easiest way to visual you data in playground
it's perfect to work with TestDrive, to try it just type: "testDrive VisualDebugger"
Features
- [x] support CocoaPods, Carthage, Swift Package Manager
- [x] support visual debug draw bezier path
- [x] support visual debug [CGPoint], with different styles
- [x] support visual debug CGAffineTransform
- [x] support choose proper 2d coordinate system
- [x] Single source file
Sneak peek
Requirements
- iOS 8.0+ | macOS 10.11+ | tvOS 9.0+
- Xcode 8
Installation
CocoaPods
You can use CocoaPods to install VisualDebugger by adding it to your Podfile:
platform :ios, '8.0'
use_frameworks!
target 'MyApp' do
pod 'VisualDebugger', '~> 2.0.0'
end
Carthage
Create a Cartfile that lists the framework and run carthage update. Follow the instructions to add $(SRCROOT)/Carthage/Build/iOS/VisualDebugger.framework to an iOS project.
github "chenyunguiMilook/VisualDebugger" ~> 2.0.0
Manually
- Download and drop
VisualDebugger.swiftinto your project. - Congratulations!
Swift Package Manager
You can use The Swift Package Manager to install VisualDebugger by adding the proper description to your Package.swift file:
import PackageDescription
let package = Package(
name: "PROJECT_NAME",
targets: [],
dependencies: [
.Package(url: "https://github.com/chenyunguiMilook/VisualDebugger.git", majorVersion: 2)
]
)