├── README.md ├── SlidingComments.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ └── IDEWorkspaceChecks.plist │ └── xcuserdata │ │ └── santosez.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ ├── alineborges.xcuserdatad │ └── xcschemes │ │ └── xcschememanagement.plist │ └── santosez.xcuserdatad │ └── xcschemes │ └── xcschememanagement.plist ├── SlidingComments ├── AppDelegate.swift ├── Assets.xcassets │ ├── 34.imageset │ │ ├── 34.jpg │ │ └── Contents.json │ ├── 64.imageset │ │ ├── 64.jpg │ │ └── Contents.json │ ├── 82.imageset │ │ ├── 82.jpg │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── Contents.json │ ├── SEA.imageset │ │ ├── Contents.json │ │ └── SEA.png │ ├── photo.imageset │ │ ├── Contents.json │ │ └── photo.jpg │ └── speech-bubbles-comment-option.imageset │ │ ├── Contents.json │ │ └── speech-bubbles-comment-option.png ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Info.plist └── ViewController.swift └── comments.gif /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alinekborges/UIViewPropertyAnimator/HEAD/README.md -------------------------------------------------------------------------------- /SlidingComments.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alinekborges/UIViewPropertyAnimator/HEAD/SlidingComments.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SlidingComments.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alinekborges/UIViewPropertyAnimator/HEAD/SlidingComments.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /SlidingComments.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alinekborges/UIViewPropertyAnimator/HEAD/SlidingComments.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /SlidingComments.xcodeproj/project.xcworkspace/xcuserdata/santosez.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alinekborges/UIViewPropertyAnimator/HEAD/SlidingComments.xcodeproj/project.xcworkspace/xcuserdata/santosez.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /SlidingComments.xcodeproj/xcuserdata/alineborges.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alinekborges/UIViewPropertyAnimator/HEAD/SlidingComments.xcodeproj/xcuserdata/alineborges.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /SlidingComments.xcodeproj/xcuserdata/santosez.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alinekborges/UIViewPropertyAnimator/HEAD/SlidingComments.xcodeproj/xcuserdata/santosez.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /SlidingComments/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alinekborges/UIViewPropertyAnimator/HEAD/SlidingComments/AppDelegate.swift -------------------------------------------------------------------------------- /SlidingComments/Assets.xcassets/34.imageset/34.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alinekborges/UIViewPropertyAnimator/HEAD/SlidingComments/Assets.xcassets/34.imageset/34.jpg -------------------------------------------------------------------------------- /SlidingComments/Assets.xcassets/34.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alinekborges/UIViewPropertyAnimator/HEAD/SlidingComments/Assets.xcassets/34.imageset/Contents.json -------------------------------------------------------------------------------- /SlidingComments/Assets.xcassets/64.imageset/64.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alinekborges/UIViewPropertyAnimator/HEAD/SlidingComments/Assets.xcassets/64.imageset/64.jpg -------------------------------------------------------------------------------- /SlidingComments/Assets.xcassets/64.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alinekborges/UIViewPropertyAnimator/HEAD/SlidingComments/Assets.xcassets/64.imageset/Contents.json -------------------------------------------------------------------------------- /SlidingComments/Assets.xcassets/82.imageset/82.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alinekborges/UIViewPropertyAnimator/HEAD/SlidingComments/Assets.xcassets/82.imageset/82.jpg -------------------------------------------------------------------------------- /SlidingComments/Assets.xcassets/82.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alinekborges/UIViewPropertyAnimator/HEAD/SlidingComments/Assets.xcassets/82.imageset/Contents.json -------------------------------------------------------------------------------- /SlidingComments/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alinekborges/UIViewPropertyAnimator/HEAD/SlidingComments/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /SlidingComments/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alinekborges/UIViewPropertyAnimator/HEAD/SlidingComments/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /SlidingComments/Assets.xcassets/SEA.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alinekborges/UIViewPropertyAnimator/HEAD/SlidingComments/Assets.xcassets/SEA.imageset/Contents.json -------------------------------------------------------------------------------- /SlidingComments/Assets.xcassets/SEA.imageset/SEA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alinekborges/UIViewPropertyAnimator/HEAD/SlidingComments/Assets.xcassets/SEA.imageset/SEA.png -------------------------------------------------------------------------------- /SlidingComments/Assets.xcassets/photo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alinekborges/UIViewPropertyAnimator/HEAD/SlidingComments/Assets.xcassets/photo.imageset/Contents.json -------------------------------------------------------------------------------- /SlidingComments/Assets.xcassets/photo.imageset/photo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alinekborges/UIViewPropertyAnimator/HEAD/SlidingComments/Assets.xcassets/photo.imageset/photo.jpg -------------------------------------------------------------------------------- /SlidingComments/Assets.xcassets/speech-bubbles-comment-option.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alinekborges/UIViewPropertyAnimator/HEAD/SlidingComments/Assets.xcassets/speech-bubbles-comment-option.imageset/Contents.json -------------------------------------------------------------------------------- /SlidingComments/Assets.xcassets/speech-bubbles-comment-option.imageset/speech-bubbles-comment-option.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alinekborges/UIViewPropertyAnimator/HEAD/SlidingComments/Assets.xcassets/speech-bubbles-comment-option.imageset/speech-bubbles-comment-option.png -------------------------------------------------------------------------------- /SlidingComments/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alinekborges/UIViewPropertyAnimator/HEAD/SlidingComments/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /SlidingComments/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alinekborges/UIViewPropertyAnimator/HEAD/SlidingComments/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /SlidingComments/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alinekborges/UIViewPropertyAnimator/HEAD/SlidingComments/Info.plist -------------------------------------------------------------------------------- /SlidingComments/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alinekborges/UIViewPropertyAnimator/HEAD/SlidingComments/ViewController.swift -------------------------------------------------------------------------------- /comments.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alinekborges/UIViewPropertyAnimator/HEAD/comments.gif --------------------------------------------------------------------------------