转载

[iOS] Cribble - 好用的 iOS 应用测试工具

Cribble

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

[iOS] Cribble - 好用的 iOS 应用测试工具

Getting Started

Anexample app is included demonstrating Cribble's functionality.

Usage

Simply add the following lines into your app delegate:

import Cribble  override func motionBegan(motion: UIEventSubtype, withEvent 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.redColor())  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 7.0+

Original idea

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

License

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

原文  https://github.com/maxsokolov/Cribble
正文到此结束
Loading...