Popularity
3.9
Stable
Activity
0.0
Stable
269
10
6

Code Quality Rank: L5
Programming language: Swift
License: MIT License
Tags: Testing     Other Testing    
Latest version: v2.1.0

Cribble alternatives and similar libraries

Based on the "Other Testing" category.
Alternatively, view Cribble alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of Cribble or a related project?

Add another 'Other Testing' Library

README

Cribble

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

Cribble

Getting Started

An [example app](Demo) 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.


*Note that all licence references and agreements mentioned in the Cribble README section above are relevant to that project's source code only.