forked from nicklockwood/ReflectionView
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ReflectionView.podspec.json
24 lines (24 loc) · 1.3 KB
/
ReflectionView.podspec.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"name": "ReflectionView",
"version": "1.2",
"summary": "A UIView subclass designed to make it easy to create \"mirrored floor\"-style reflections of views on iOS.",
"description": "ReflectionView is a UIView subclass designed to make it easy to create \"mirrored floor\"-style reflections of views on iOS.\n\n You may have noticed that Apple provides a Reflection sample project for this, but Apple's solution works only with images and involves fairly slow CPU-bound drawing to update the reflection, making it unsuitable for reflecting animated content. ReflectionView can operate in two modes; static mode - which works like Apple's sample code - or dynamic mode, which uses Core Animation and works in real-time on any view. This means you can use it to reflect the contents of a view containing dynamic elements such as controls or animation and the reflection will keep up in real-time.",
"homepage": "https://github.com/nicklockwood/ReflectionView",
"license": {
"type": "MIT",
"file": "LICENCE.md"
},
"authors": {
"Nick Lockwood": "[email protected]"
},
"source": {
"git": "https://github.com/nicklockwood/ReflectionView.git",
"tag": "1.2"
},
"platforms": {
"ios": "4.3"
},
"source_files": "ReflectionView",
"frameworks": "QuartzCore",
"requires_arc": true
}