Skip to content

Commit f246724

Browse files
committed
UIView Animation - Position
Add Position animation to the project.
1 parent be648e1 commit f246724

File tree

12 files changed

+932
-0
lines changed

12 files changed

+932
-0
lines changed

.gitignore

Lines changed: 103 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,103 @@
1+
# Created by https://www.gitignore.io
2+
3+
### Swift ###
4+
# Xcode
5+
#
6+
build/
7+
*.pbxuser
8+
!default.pbxuser
9+
*.mode1v3
10+
!default.mode1v3
11+
*.mode2v3
12+
!default.mode2v3
13+
*.perspectivev3
14+
!default.perspectivev3
15+
xcuserdata
16+
*.xccheckout
17+
*.moved-aside
18+
DerivedData
19+
*.hmap
20+
*.ipa
21+
*.xcuserstate
22+
23+
# CocoaPods
24+
#
25+
# We recommend against adding the Pods directory to your .gitignore. However
26+
# you should judge for yourself, the pros and cons are mentioned at:
27+
# http://guides.cocoapods.org/using/using-cocoapods.html#should-i-ignore-the-pods-directory-in-source-control
28+
#
29+
# Pods/
30+
31+
# Carthage
32+
#
33+
# Add this line if you want to avoid checking in source code from Carthage dependencies.
34+
# Carthage/Checkouts
35+
36+
Carthage/Build
37+
38+
39+
### Xcode ###
40+
build/
41+
*.pbxuser
42+
!default.pbxuser
43+
*.mode1v3
44+
!default.mode1v3
45+
*.mode2v3
46+
!default.mode2v3
47+
*.perspectivev3
48+
!default.perspectivev3
49+
xcuserdata
50+
*.xccheckout
51+
*.moved-aside
52+
DerivedData
53+
*.xcuserstate
54+
55+
56+
### AppCode ###
57+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm
58+
59+
*.iml
60+
61+
## Directory-based project format:
62+
.idea/
63+
# if you remove the above rule, at least ignore the following:
64+
65+
# User-specific stuff:
66+
# .idea/workspace.xml
67+
# .idea/tasks.xml
68+
# .idea/dictionaries
69+
70+
# Sensitive or high-churn files:
71+
# .idea/dataSources.ids
72+
# .idea/dataSources.xml
73+
# .idea/sqlDataSources.xml
74+
# .idea/dynamic.xml
75+
# .idea/uiDesigner.xml
76+
77+
# Gradle:
78+
# .idea/gradle.xml
79+
# .idea/libraries
80+
81+
# Mongo Explorer plugin:
82+
# .idea/mongoSettings.xml
83+
84+
## File-based project format:
85+
*.ipr
86+
*.iws
87+
88+
## Plugin-specific files:
89+
90+
# IntelliJ
91+
/out/
92+
93+
# mpeltonen/sbt-idea plugin
94+
.idea_modules/
95+
96+
# JIRA plugin
97+
atlassian-ide-plugin.xml
98+
99+
# Crashlytics plugin (for Android Studio and IntelliJ)
100+
com_crashlytics_export_strings.xml
101+
crashlytics.properties
102+
crashlytics-build.properties
103+

0 commit comments

Comments
 (0)