TouchVisualizer alternatives and similar libraries
Based on the "UI" category.
Alternatively, view TouchVisualizer alternatives based on common mentions on social networks and blogs.
-
Animated Tab Bar
:octocat: RAMAnimatedTabBarController is a Swift UI module library for adding animation to iOS tabbar items and icons. iOS library made by @Ramotion -
folding-cell
:octocat: đ FoldingCell is an expanding content cell with animation made by @Ramotion -
JTAppleCalendar
The Unofficial Apple iOS Swift Calendar View. Swift calendar Library. iOS calendar Control. 100% Customizable -
FSPagerView
FSPagerView is an elegant Screen Slide Library. It is extremely helpful for making Banner ViewăProduct ShowăWelcome/Guide PagesăScreen/ViewController Sliders. -
Pagemenu
A paging menu controller built from other view controllers placed inside a scroll view (like Spotify, Windows Phone, Instagram) -
SwipeCellKit
Swipeable UITableViewCell/UICollectionViewCell based on the stock Mail.app, implemented in Swift. -
SwiftEntryKit
SwiftEntryKit is a presentation library for iOS. It can be used to easily display overlays within your iOS apps. -
Alerts Pickers
Advanced usage of UIAlertController and pickers based on it: Telegram, Contacts, Location, PhotoLibrary, Country, Phone Code, Currency, Date... -
ESTabBarController
:octocat: ESTabBarController is a Swift model for customize UI, badge and adding animation to tabbar items. Support lottie! -
Scrollable-GraphView
An adaptive scrollable graph view for iOS to visualise simple discrete datasets. Written in Swift. -
SideMenu
Simple side/slide menu control for iOS, no code necessary! Lots of customization. Add it to your project in 5 minutes or less. -
Material Components for iOS
[In maintenance mode] Modular and customizable Material Design UI components for iOS -
NotificationBanner
The easiest way to display highly customizable in app notification banners in iOS -
ActiveLabel
UILabel drop-in replacement supporting Hashtags (#), Mentions (@) and URLs (http://) written in Swift -
SlideMenuControllerSwift
iOS Slide Menu View based on Google+, iQON, Feedly, Ameba iOS app. It is written in pure swift. -
PopupDialog
A simple, customizable popup dialog for iOS written in Swift. Replaces UIAlertController alert style. -
TLYShyNavBar
DISCONTINUED. Unlike all those arrogant UINavigationBar, this one is shy and humble! Easily create auto-scrolling navigation bars! -
StarWars.iOS
This component implements transition animation to crumble view-controller into tiny pieces. -
KMNavigationBarTransition
A drop-in universal library helps you to manage the navigation bar styles and makes transition animations smooth between different navigation bar styles while pushing or popping a view controller for all orientations. And you don't need to write any line of code for it, it all happens automatically. -
Whisper
:mega: Whisper is a component that will make the task of display messages and in-app notifications simple. It has three different views inside -
PaperOnboarding
:octocat: PaperOnboarding is a material design UI slider. Swift UI library by @Ramotion -
CircleMenu
:octocat: âď¸ CircleMenu is a simple, elegant UI menu with a circular layout and material design animations. Swift UI library made by @Ramotion -
RazzleDazzle
A simple keyframe-based animation framework for iOS, written in Swift. Perfect for scrolling app intros.
CodeRabbit: AI Code Reviews for Developers
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of TouchVisualizer or a related project?
README
[TouchVisualizer](misc/logo2.png)
TouchVisualizer is a lightweight pure Swift implementation for visualising touches on the screen.
Features
- Works with just a single line of code!
- Supports multiple fingers.
- Supports multiple
UIWindow
's. - Displays touch radius (finger size).
- Displays touch duration.
- Customise the finger-points image and colour.
- Supports iPhone and iPad in both portrait and landscape mode.
How it looks
Portrait:
[one](misc/one.gif)
Landscape:
[two](misc/two.gif)
Robots:
[three](misc/three.gif)
In-app implementation:
[four](misc/four.gif)
It's fun!
Runtime Requirements
- Swift 4.0
- Xcode 9.2
- iOS9.0 or later
TouchVisualizer works with Swift 5.2 from version 4.0.0.
Installation and Setup
Note: Embedded frameworks require a minimum deployment target of iOS 9.0.
Information: To use TouchVisualizer with a project targeting iOS 8.0 or lower, you must include the TouchVisualizer.swift
source file directly in your project.
Installing with CocoaPods
CocoaPods is a centralised dependency manager that automates the process of adding libraries to your Cocoa application. You can install it with the following command:
$ gem update
$ gem install cocoapods
$ pods --version
To integrate TouchVisualizer into your Xcode project using CocoaPods, specify it in your Podfile
and run pod install
.
platform :ios, '9.0'
use_frameworks!
pod "TouchVisualizer", '~> 4.0'
Installing with Carthage
Carthage is a decentralised dependency manager that automates the process of adding frameworks to your Cocoa application.
You can install Carthage with Homebrew using the following command:
$ brew update
$ brew install carthage
To integrate TouchVisualizer into your Xcode project using Carthage, specify it in your Cartfile
:
github "morizotter/TouchVisualizer" "4.0.0"
Manual Installation
To install TouchVisualizer without a dependency manager, please add all of the files in /Pod
to your Xcode Project.
Usage
To start using TouchVisualizer, write the following line wherever you want to start visualising:
import TouchVisualizer
Then invoke visualisation, by calling:
Visualizer.start()
and stop the presentation like this:
Visualizer.stop()
Get touch locations by this:
Visualizer.getTouches()
It is really simple, isn't it?
Customisation
TouchVisualizer also has the ability to customize your touch events. Here is an example of what can be customized:
var config = Configuration()
config.color = UIColor.redColor()
config.image = UIImage(named: "YOUR-IMAGE")
config.showsTimer = true
config.showsTouchRadius = true
config.showsLog = true
Visualizer.start(config)
Configuration properties
name | type | description | default |
---|---|---|---|
color | UIColor |
Color of touch point and text. | default color |
image | UIImage |
Touch point image. If rendering mode is set to UIImageRenderingModeAlwaysTemplate , the image is filled with color above. |
circle image |
defaultSize | CGSize |
Default size of touch point. | 60 x 60px |
showsTimer | Bool |
Shows touch duration. | false |
showsTouchRadius | Bool |
Shows touch radius by scaling touch point. It doesn't work on simulator. | false |
showsLog | Bool |
Shows log. | false |
Documentation
Peripheral
- [How to take an iOS screen movie](misc/take_a_movie.md)
Presentation
- TouchVisualizer Demo movie #potatotips // Speaker Deck @potatotips May 13 2015
Contributing
Please file issues or submit pull requests for anything youâd like to see! We're waiting! :)
Licensing
TouchVisualizer is released under the MIT license. Go read the LICENSE file for more information.
Miscellaneous
There is a similar touch visualization library called COSTouchVisualizer, which is written in Objective-C. COSTouchVisualizer supports earlier versions of iOS and is more mature. If TouchVisualizer isn't enough for you, try that!
*Note that all licence references and agreements mentioned in the TouchVisualizer README section above
are relevant to that project's source code only.