Skip to content
/ Spot Public

Spot: A super simple library to help point out user interface issues

License

Notifications You must be signed in to change notification settings

Workshed/Spot

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

36 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Spot

alt text

What's it do

When you spot something in your app that needs reporting just shake your phone/device. A screenshot of the current screen will popup, draw on it to highlight areas and then send it on in an email.

Installation

Spot is available through CocoaPods. To install it, simply add the following line to your Podfile:

pod "Spot"

Getting started

Once you've installed the pod, go to your application delegate and add the following...

Swift:

import Spot

Then in application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool

Spot.start()

Objective C:

@import Spot;

Then in (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions

[Spot start];

Providing more information for the reporting email

Implement the SpotDelegate protocol to provide more information to be included in the report email.

This allows you to provide a default email address and a file attachement (useful for log files!).

Example

To run the example project, clone the repo, and open the project file in the "Example" folder

Author

Daniel Leivers, [email protected]

License

Spot is available under the MIT license. See the LICENSE file for more info.