chenyunguiMilook / VisualDebugger

The most elegant and easiest way to visual you data in playground

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

  • support CocoaPods, Carthage, Swift Package Manager
  • support visual debug draw bezier path
  • support visual debug [CGPoint], with different styles
  • support visual debug CGAffineTransform
  • support choose proper 2d coordinate system
  • 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

  1. Download and drop VisualDebugger.swift into your project.
  2. 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)
    ]
)

About

The most elegant and easiest way to visual you data in playground

License:MIT License


Languages

Language:Swift 99.1%Language:Ruby 0.9%