[Add] DocumentReaderFullAuthRFIDStage 7.5.10872
[CocoaPods.git] / Specs / 2 / b / 5 / 3DTouchHelper / 0.1 / 3DTouchHelper.podspec.json
blobead05bb8f8f06f53c443aec1d91f019fa4309f3b
2   "name": "3DTouchHelper",
3   "version": "0.1",
4   "summary": "Easy to use continuous 3D touch gesture recognizer.",
5   "description": "3DTouchHelper\n===\n\nEasy to use continuous 3D touch gesture recognizer.\n\nInstall\n----\n\n### Cocoapods\n\n``` ruby\nuse_frameworks\npod '3DTouchHelper'\n```\n\n### Manual\n\nCopy & paste `3DTouchHelper` file into your project.\n\nUsage\n----\n\nCall `add3DTouchGestureRecognizer:` function form your view or viewcontroller.\n\n``` swift\nadd3DTouchGestureRecognizer { (touchIndex, state, force, normalizedForce, forceValue, location) in\n    print(\"touch (touchIndex) (state) (forceValue) value (normalizedForce) at (location)\")\n}\n```\n\n### Handler\n\n``` swift\ntypealias TDTouchGestureRecognizerCallback = (\n    touchIndex: Int,\n    state: UIGestureRecognizerState,\n    force: CGFloat,\n    normalizedForce: CGFloat,\n    touchForce: TDTouchForce,\n    location: CGPoint) -> Void\n```",
6   "homepage": "https://github.com/cemolcay/3DTouchHelper",
7   "license": {
8     "type": "MIT",
9     "file": "LICENSE"
10   },
11   "authors": {
12     "cemolcay": "ccemolcay@gmail.com"
13   },
14   "platforms": {
15     "ios": "9.0"
16   },
17   "source": {
18     "git": "https://github.com/cemolcay/3DTouchHelper.git",
19     "tag": "v0.1"
20   },
21   "source_files": "3DTouchHelper/3DTouchHelper/*.swift",
22   "requires_arc": true