Skip to content

Latest commit

 

History

History
26 lines (19 loc) · 501 Bytes

README.md

File metadata and controls

26 lines (19 loc) · 501 Bytes

SeaTouch

Displays where the user is touching on screen with elegant ripples and dots.

preview

Installation:

  1. Add the following to your swift packages in Xcode:
    • https://github.com/mredig/SeaTouch.git
  2. Early in your app lifecycle (eg, AppDelegate, SceneDelegate, or even just the first UIViewController on screen):
    //...
    import SeaTouch
    
    //...
    func someEarlyCalledMethod() {
    	//...
    
    	#if DEBUG
    	window?.showTouches()
    	#endif
    }
  3. Magic!