Skip to content

maxsokolov/Cribble

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

58 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Cribble

Swift 4.0 compatible Carthage compatible CocoaPods compatible Platform iOS License: MIT

Cribble - a tool for visual testing iPhone and iPad apps. Every pixel counts.

Cribble

Getting Started

An example app is included demonstrating Cribble's functionality.

Usage

Simply add the following lines into your app delegate:

import Cribble

override func motionBegan(_ motion: UIEventSubtype, with event: UIEvent?) {
	guard motion == .motionShake else { return }

	Cribble.shared.hidden = !Cribble.shared.hidden
}

Shake a device and explore ui's roughness.

Custom options

You may want to use your own parameters for the grid. In that case simply use CribbleOptions:

let options = CribbleOptions(horizontalStep: 10, verticalStep: 10, opacity: 0.7, color: UIColor.red)
        
Cribble.shared.options = options

Installation

CocoaPods

To integrate Cribble into your Xcode project using CocoaPods, specify it in your Podfile:

pod 'Cribble'

Carthage

Add the line github "maxsokolov/cribble" to your Cartfile.

Manual

Clone the repo and drag files from Sources folder into your Xcode project.

Requirements

  • iOS 8.0
  • Xcode 8.0

Original idea

This project has been driven by product designer Oleg Frolov. Check out his amazing Dribble.

License

Cribble is available under the MIT license. See LICENSE for details.

About

Swifty tool for visual testing iPhone and iPad apps. Every pixel counts.

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published