├── AnimateSnapshotView ├── AnimateSnapshotView.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata │ │ │ └── mokong.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ └── mokong.xcuserdatad │ │ └── xcschemes │ │ ├── AnimateSnapshotView.xcscheme │ │ └── xcschememanagement.plist ├── AnimateSnapshotView.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ └── mokong.xcuserdatad │ │ ├── UserInterfaceState.xcuserstate │ │ └── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist ├── AnimateSnapshotView │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── letter(open).imageset │ │ │ ├── Contents.json │ │ │ ├── letter(open)@2x.png │ │ │ └── letter(open)@3x.png │ │ ├── letter.imageset │ │ │ ├── Contents.json │ │ │ ├── letter@2x.png │ │ │ └── letter@3x.png │ │ ├── point(top).imageset │ │ │ ├── Contents.json │ │ │ ├── point(top)@2x.png │ │ │ └── point(top)@3x.png │ │ ├── point.imageset │ │ │ ├── Contents.json │ │ │ ├── point@2x.png │ │ │ └── point@3x.png │ │ └── read.imageset │ │ │ ├── Contents.json │ │ │ ├── read@2x.png │ │ │ └── read@3x.png │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Info.plist │ ├── LetterView.h │ ├── LetterView.m │ ├── MKCustomReadLetterView.h │ ├── MKCustomReadLetterView.m │ ├── MKCustomReadLetterView.xib │ ├── MKReceiveLetterCell.h │ ├── MKReceiveLetterCell.m │ ├── MKReceiveLetterCell.xib │ ├── MKSentLetterCell.h │ ├── MKSentLetterCell.m │ ├── MKSentLetterCell.xib │ ├── ViewController.h │ ├── ViewController.m │ └── main.m ├── Podfile ├── Podfile.lock └── Pods │ ├── Headers │ ├── Private │ │ └── Masonry │ │ │ ├── MASCompositeConstraint.h │ │ │ ├── MASConstraint+Private.h │ │ │ ├── MASConstraint.h │ │ │ ├── MASConstraintMaker.h │ │ │ ├── MASLayoutConstraint.h │ │ │ ├── MASUtilities.h │ │ │ ├── MASViewAttribute.h │ │ │ ├── MASViewConstraint.h │ │ │ ├── Masonry.h │ │ │ ├── NSArray+MASAdditions.h │ │ │ ├── NSArray+MASShorthandAdditions.h │ │ │ ├── NSLayoutConstraint+MASDebugAdditions.h │ │ │ ├── View+MASAdditions.h │ │ │ ├── View+MASShorthandAdditions.h │ │ │ └── ViewController+MASAdditions.h │ └── Public │ │ └── Masonry │ │ ├── MASCompositeConstraint.h │ │ ├── MASConstraint+Private.h │ │ ├── MASConstraint.h │ │ ├── MASConstraintMaker.h │ │ ├── MASLayoutConstraint.h │ │ ├── MASUtilities.h │ │ ├── MASViewAttribute.h │ │ ├── MASViewConstraint.h │ │ ├── Masonry.h │ │ ├── NSArray+MASAdditions.h │ │ ├── NSArray+MASShorthandAdditions.h │ │ ├── NSLayoutConstraint+MASDebugAdditions.h │ │ ├── View+MASAdditions.h │ │ ├── View+MASShorthandAdditions.h │ │ └── ViewController+MASAdditions.h │ ├── Manifest.lock │ ├── Masonry │ ├── LICENSE │ ├── Masonry │ │ ├── MASCompositeConstraint.h │ │ ├── MASCompositeConstraint.m │ │ ├── MASConstraint+Private.h │ │ ├── MASConstraint.h │ │ ├── MASConstraint.m │ │ ├── MASConstraintMaker.h │ │ ├── MASConstraintMaker.m │ │ ├── MASLayoutConstraint.h │ │ ├── MASLayoutConstraint.m │ │ ├── MASUtilities.h │ │ ├── MASViewAttribute.h │ │ ├── MASViewAttribute.m │ │ ├── MASViewConstraint.h │ │ ├── MASViewConstraint.m │ │ ├── Masonry.h │ │ ├── NSArray+MASAdditions.h │ │ ├── NSArray+MASAdditions.m │ │ ├── NSArray+MASShorthandAdditions.h │ │ ├── NSLayoutConstraint+MASDebugAdditions.h │ │ ├── NSLayoutConstraint+MASDebugAdditions.m │ │ ├── View+MASAdditions.h │ │ ├── View+MASAdditions.m │ │ ├── View+MASShorthandAdditions.h │ │ ├── ViewController+MASAdditions.h │ │ └── ViewController+MASAdditions.m │ └── README.md │ ├── Pods.xcodeproj │ ├── project.pbxproj │ └── xcuserdata │ │ └── mokong.xcuserdatad │ │ └── xcschemes │ │ ├── Masonry.xcscheme │ │ ├── Pods-AnimateSnapshotView.xcscheme │ │ └── xcschememanagement.plist │ └── Target Support Files │ ├── Masonry │ ├── Masonry-dummy.m │ ├── Masonry-prefix.pch │ └── Masonry.xcconfig │ └── Pods-AnimateSnapshotView │ ├── Pods-AnimateSnapshotView-acknowledgements.markdown │ ├── Pods-AnimateSnapshotView-acknowledgements.plist │ ├── Pods-AnimateSnapshotView-dummy.m │ ├── Pods-AnimateSnapshotView-frameworks.sh │ ├── Pods-AnimateSnapshotView-resources.sh │ ├── Pods-AnimateSnapshotView.debug.xcconfig │ └── Pods-AnimateSnapshotView.release.xcconfig └── README.md /AnimateSnapshotView/AnimateSnapshotView.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokong/AnimateSnapShotView/HEAD/AnimateSnapshotView/AnimateSnapshotView.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /AnimateSnapshotView/AnimateSnapshotView.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokong/AnimateSnapShotView/HEAD/AnimateSnapshotView/AnimateSnapshotView.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /AnimateSnapshotView/AnimateSnapshotView.xcodeproj/project.xcworkspace/xcuserdata/mokong.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokong/AnimateSnapShotView/HEAD/AnimateSnapshotView/AnimateSnapshotView.xcodeproj/project.xcworkspace/xcuserdata/mokong.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /AnimateSnapshotView/AnimateSnapshotView.xcodeproj/xcuserdata/mokong.xcuserdatad/xcschemes/AnimateSnapshotView.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokong/AnimateSnapShotView/HEAD/AnimateSnapshotView/AnimateSnapshotView.xcodeproj/xcuserdata/mokong.xcuserdatad/xcschemes/AnimateSnapshotView.xcscheme -------------------------------------------------------------------------------- /AnimateSnapshotView/AnimateSnapshotView.xcodeproj/xcuserdata/mokong.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokong/AnimateSnapShotView/HEAD/AnimateSnapshotView/AnimateSnapshotView.xcodeproj/xcuserdata/mokong.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /AnimateSnapshotView/AnimateSnapshotView.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokong/AnimateSnapShotView/HEAD/AnimateSnapshotView/AnimateSnapshotView.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /AnimateSnapshotView/AnimateSnapshotView.xcworkspace/xcuserdata/mokong.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokong/AnimateSnapShotView/HEAD/AnimateSnapshotView/AnimateSnapshotView.xcworkspace/xcuserdata/mokong.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /AnimateSnapshotView/AnimateSnapshotView.xcworkspace/xcuserdata/mokong.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokong/AnimateSnapShotView/HEAD/AnimateSnapshotView/AnimateSnapshotView.xcworkspace/xcuserdata/mokong.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /AnimateSnapshotView/AnimateSnapshotView/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokong/AnimateSnapShotView/HEAD/AnimateSnapshotView/AnimateSnapshotView/AppDelegate.h -------------------------------------------------------------------------------- /AnimateSnapshotView/AnimateSnapshotView/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokong/AnimateSnapShotView/HEAD/AnimateSnapshotView/AnimateSnapshotView/AppDelegate.m -------------------------------------------------------------------------------- /AnimateSnapshotView/AnimateSnapshotView/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokong/AnimateSnapShotView/HEAD/AnimateSnapshotView/AnimateSnapshotView/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /AnimateSnapshotView/AnimateSnapshotView/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokong/AnimateSnapShotView/HEAD/AnimateSnapshotView/AnimateSnapshotView/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /AnimateSnapshotView/AnimateSnapshotView/Assets.xcassets/letter(open).imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokong/AnimateSnapShotView/HEAD/AnimateSnapshotView/AnimateSnapshotView/Assets.xcassets/letter(open).imageset/Contents.json -------------------------------------------------------------------------------- /AnimateSnapshotView/AnimateSnapshotView/Assets.xcassets/letter(open).imageset/letter(open)@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokong/AnimateSnapShotView/HEAD/AnimateSnapshotView/AnimateSnapshotView/Assets.xcassets/letter(open).imageset/letter(open)@2x.png -------------------------------------------------------------------------------- /AnimateSnapshotView/AnimateSnapshotView/Assets.xcassets/letter(open).imageset/letter(open)@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokong/AnimateSnapShotView/HEAD/AnimateSnapshotView/AnimateSnapshotView/Assets.xcassets/letter(open).imageset/letter(open)@3x.png -------------------------------------------------------------------------------- /AnimateSnapshotView/AnimateSnapshotView/Assets.xcassets/letter.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokong/AnimateSnapShotView/HEAD/AnimateSnapshotView/AnimateSnapshotView/Assets.xcassets/letter.imageset/Contents.json -------------------------------------------------------------------------------- /AnimateSnapshotView/AnimateSnapshotView/Assets.xcassets/letter.imageset/letter@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokong/AnimateSnapShotView/HEAD/AnimateSnapshotView/AnimateSnapshotView/Assets.xcassets/letter.imageset/letter@2x.png -------------------------------------------------------------------------------- /AnimateSnapshotView/AnimateSnapshotView/Assets.xcassets/letter.imageset/letter@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokong/AnimateSnapShotView/HEAD/AnimateSnapshotView/AnimateSnapshotView/Assets.xcassets/letter.imageset/letter@3x.png -------------------------------------------------------------------------------- /AnimateSnapshotView/AnimateSnapshotView/Assets.xcassets/point(top).imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokong/AnimateSnapShotView/HEAD/AnimateSnapshotView/AnimateSnapshotView/Assets.xcassets/point(top).imageset/Contents.json -------------------------------------------------------------------------------- /AnimateSnapshotView/AnimateSnapshotView/Assets.xcassets/point(top).imageset/point(top)@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokong/AnimateSnapShotView/HEAD/AnimateSnapshotView/AnimateSnapshotView/Assets.xcassets/point(top).imageset/point(top)@2x.png -------------------------------------------------------------------------------- /AnimateSnapshotView/AnimateSnapshotView/Assets.xcassets/point(top).imageset/point(top)@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokong/AnimateSnapShotView/HEAD/AnimateSnapshotView/AnimateSnapshotView/Assets.xcassets/point(top).imageset/point(top)@3x.png -------------------------------------------------------------------------------- /AnimateSnapshotView/AnimateSnapshotView/Assets.xcassets/point.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokong/AnimateSnapShotView/HEAD/AnimateSnapshotView/AnimateSnapshotView/Assets.xcassets/point.imageset/Contents.json -------------------------------------------------------------------------------- /AnimateSnapshotView/AnimateSnapshotView/Assets.xcassets/point.imageset/point@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokong/AnimateSnapShotView/HEAD/AnimateSnapshotView/AnimateSnapshotView/Assets.xcassets/point.imageset/point@2x.png -------------------------------------------------------------------------------- /AnimateSnapshotView/AnimateSnapshotView/Assets.xcassets/point.imageset/point@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokong/AnimateSnapShotView/HEAD/AnimateSnapshotView/AnimateSnapshotView/Assets.xcassets/point.imageset/point@3x.png -------------------------------------------------------------------------------- /AnimateSnapshotView/AnimateSnapshotView/Assets.xcassets/read.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokong/AnimateSnapShotView/HEAD/AnimateSnapshotView/AnimateSnapshotView/Assets.xcassets/read.imageset/Contents.json -------------------------------------------------------------------------------- /AnimateSnapshotView/AnimateSnapshotView/Assets.xcassets/read.imageset/read@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokong/AnimateSnapShotView/HEAD/AnimateSnapshotView/AnimateSnapshotView/Assets.xcassets/read.imageset/read@2x.png -------------------------------------------------------------------------------- /AnimateSnapshotView/AnimateSnapshotView/Assets.xcassets/read.imageset/read@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokong/AnimateSnapShotView/HEAD/AnimateSnapshotView/AnimateSnapshotView/Assets.xcassets/read.imageset/read@3x.png -------------------------------------------------------------------------------- /AnimateSnapshotView/AnimateSnapshotView/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokong/AnimateSnapShotView/HEAD/AnimateSnapshotView/AnimateSnapshotView/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /AnimateSnapshotView/AnimateSnapshotView/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokong/AnimateSnapShotView/HEAD/AnimateSnapshotView/AnimateSnapshotView/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /AnimateSnapshotView/AnimateSnapshotView/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokong/AnimateSnapShotView/HEAD/AnimateSnapshotView/AnimateSnapshotView/Info.plist -------------------------------------------------------------------------------- /AnimateSnapshotView/AnimateSnapshotView/LetterView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokong/AnimateSnapShotView/HEAD/AnimateSnapshotView/AnimateSnapshotView/LetterView.h -------------------------------------------------------------------------------- /AnimateSnapshotView/AnimateSnapshotView/LetterView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokong/AnimateSnapShotView/HEAD/AnimateSnapshotView/AnimateSnapshotView/LetterView.m -------------------------------------------------------------------------------- /AnimateSnapshotView/AnimateSnapshotView/MKCustomReadLetterView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokong/AnimateSnapShotView/HEAD/AnimateSnapshotView/AnimateSnapshotView/MKCustomReadLetterView.h -------------------------------------------------------------------------------- /AnimateSnapshotView/AnimateSnapshotView/MKCustomReadLetterView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokong/AnimateSnapShotView/HEAD/AnimateSnapshotView/AnimateSnapshotView/MKCustomReadLetterView.m -------------------------------------------------------------------------------- /AnimateSnapshotView/AnimateSnapshotView/MKCustomReadLetterView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokong/AnimateSnapShotView/HEAD/AnimateSnapshotView/AnimateSnapshotView/MKCustomReadLetterView.xib -------------------------------------------------------------------------------- /AnimateSnapshotView/AnimateSnapshotView/MKReceiveLetterCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokong/AnimateSnapShotView/HEAD/AnimateSnapshotView/AnimateSnapshotView/MKReceiveLetterCell.h -------------------------------------------------------------------------------- /AnimateSnapshotView/AnimateSnapshotView/MKReceiveLetterCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokong/AnimateSnapShotView/HEAD/AnimateSnapshotView/AnimateSnapshotView/MKReceiveLetterCell.m -------------------------------------------------------------------------------- /AnimateSnapshotView/AnimateSnapshotView/MKReceiveLetterCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokong/AnimateSnapShotView/HEAD/AnimateSnapshotView/AnimateSnapshotView/MKReceiveLetterCell.xib -------------------------------------------------------------------------------- /AnimateSnapshotView/AnimateSnapshotView/MKSentLetterCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokong/AnimateSnapShotView/HEAD/AnimateSnapshotView/AnimateSnapshotView/MKSentLetterCell.h -------------------------------------------------------------------------------- /AnimateSnapshotView/AnimateSnapshotView/MKSentLetterCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokong/AnimateSnapShotView/HEAD/AnimateSnapshotView/AnimateSnapshotView/MKSentLetterCell.m -------------------------------------------------------------------------------- /AnimateSnapshotView/AnimateSnapshotView/MKSentLetterCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokong/AnimateSnapShotView/HEAD/AnimateSnapshotView/AnimateSnapshotView/MKSentLetterCell.xib -------------------------------------------------------------------------------- /AnimateSnapshotView/AnimateSnapshotView/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokong/AnimateSnapShotView/HEAD/AnimateSnapshotView/AnimateSnapshotView/ViewController.h -------------------------------------------------------------------------------- /AnimateSnapshotView/AnimateSnapshotView/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokong/AnimateSnapShotView/HEAD/AnimateSnapshotView/AnimateSnapshotView/ViewController.m -------------------------------------------------------------------------------- /AnimateSnapshotView/AnimateSnapshotView/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokong/AnimateSnapShotView/HEAD/AnimateSnapshotView/AnimateSnapshotView/main.m -------------------------------------------------------------------------------- /AnimateSnapshotView/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokong/AnimateSnapShotView/HEAD/AnimateSnapshotView/Podfile -------------------------------------------------------------------------------- /AnimateSnapshotView/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokong/AnimateSnapShotView/HEAD/AnimateSnapshotView/Podfile.lock -------------------------------------------------------------------------------- /AnimateSnapshotView/Pods/Headers/Private/Masonry/MASCompositeConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASCompositeConstraint.h -------------------------------------------------------------------------------- /AnimateSnapshotView/Pods/Headers/Private/Masonry/MASConstraint+Private.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASConstraint+Private.h -------------------------------------------------------------------------------- /AnimateSnapshotView/Pods/Headers/Private/Masonry/MASConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASConstraint.h -------------------------------------------------------------------------------- /AnimateSnapshotView/Pods/Headers/Private/Masonry/MASConstraintMaker.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASConstraintMaker.h -------------------------------------------------------------------------------- /AnimateSnapshotView/Pods/Headers/Private/Masonry/MASLayoutConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASLayoutConstraint.h -------------------------------------------------------------------------------- /AnimateSnapshotView/Pods/Headers/Private/Masonry/MASUtilities.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASUtilities.h -------------------------------------------------------------------------------- /AnimateSnapshotView/Pods/Headers/Private/Masonry/MASViewAttribute.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASViewAttribute.h -------------------------------------------------------------------------------- /AnimateSnapshotView/Pods/Headers/Private/Masonry/MASViewConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASViewConstraint.h -------------------------------------------------------------------------------- /AnimateSnapshotView/Pods/Headers/Private/Masonry/Masonry.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/Masonry.h -------------------------------------------------------------------------------- /AnimateSnapshotView/Pods/Headers/Private/Masonry/NSArray+MASAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/NSArray+MASAdditions.h -------------------------------------------------------------------------------- /AnimateSnapshotView/Pods/Headers/Private/Masonry/NSArray+MASShorthandAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/NSArray+MASShorthandAdditions.h -------------------------------------------------------------------------------- /AnimateSnapshotView/Pods/Headers/Private/Masonry/NSLayoutConstraint+MASDebugAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/NSLayoutConstraint+MASDebugAdditions.h -------------------------------------------------------------------------------- /AnimateSnapshotView/Pods/Headers/Private/Masonry/View+MASAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/View+MASAdditions.h -------------------------------------------------------------------------------- /AnimateSnapshotView/Pods/Headers/Private/Masonry/View+MASShorthandAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/View+MASShorthandAdditions.h -------------------------------------------------------------------------------- /AnimateSnapshotView/Pods/Headers/Private/Masonry/ViewController+MASAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/ViewController+MASAdditions.h -------------------------------------------------------------------------------- /AnimateSnapshotView/Pods/Headers/Public/Masonry/MASCompositeConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASCompositeConstraint.h -------------------------------------------------------------------------------- /AnimateSnapshotView/Pods/Headers/Public/Masonry/MASConstraint+Private.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASConstraint+Private.h -------------------------------------------------------------------------------- /AnimateSnapshotView/Pods/Headers/Public/Masonry/MASConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASConstraint.h -------------------------------------------------------------------------------- /AnimateSnapshotView/Pods/Headers/Public/Masonry/MASConstraintMaker.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASConstraintMaker.h -------------------------------------------------------------------------------- /AnimateSnapshotView/Pods/Headers/Public/Masonry/MASLayoutConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASLayoutConstraint.h -------------------------------------------------------------------------------- /AnimateSnapshotView/Pods/Headers/Public/Masonry/MASUtilities.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASUtilities.h -------------------------------------------------------------------------------- /AnimateSnapshotView/Pods/Headers/Public/Masonry/MASViewAttribute.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASViewAttribute.h -------------------------------------------------------------------------------- /AnimateSnapshotView/Pods/Headers/Public/Masonry/MASViewConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASViewConstraint.h -------------------------------------------------------------------------------- /AnimateSnapshotView/Pods/Headers/Public/Masonry/Masonry.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/Masonry.h -------------------------------------------------------------------------------- /AnimateSnapshotView/Pods/Headers/Public/Masonry/NSArray+MASAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/NSArray+MASAdditions.h -------------------------------------------------------------------------------- /AnimateSnapshotView/Pods/Headers/Public/Masonry/NSArray+MASShorthandAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/NSArray+MASShorthandAdditions.h -------------------------------------------------------------------------------- /AnimateSnapshotView/Pods/Headers/Public/Masonry/NSLayoutConstraint+MASDebugAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/NSLayoutConstraint+MASDebugAdditions.h -------------------------------------------------------------------------------- /AnimateSnapshotView/Pods/Headers/Public/Masonry/View+MASAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/View+MASAdditions.h -------------------------------------------------------------------------------- /AnimateSnapshotView/Pods/Headers/Public/Masonry/View+MASShorthandAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/View+MASShorthandAdditions.h -------------------------------------------------------------------------------- /AnimateSnapshotView/Pods/Headers/Public/Masonry/ViewController+MASAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/ViewController+MASAdditions.h -------------------------------------------------------------------------------- /AnimateSnapshotView/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokong/AnimateSnapShotView/HEAD/AnimateSnapshotView/Pods/Manifest.lock -------------------------------------------------------------------------------- /AnimateSnapshotView/Pods/Masonry/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokong/AnimateSnapShotView/HEAD/AnimateSnapshotView/Pods/Masonry/LICENSE -------------------------------------------------------------------------------- /AnimateSnapshotView/Pods/Masonry/Masonry/MASCompositeConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokong/AnimateSnapShotView/HEAD/AnimateSnapshotView/Pods/Masonry/Masonry/MASCompositeConstraint.h -------------------------------------------------------------------------------- /AnimateSnapshotView/Pods/Masonry/Masonry/MASCompositeConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokong/AnimateSnapShotView/HEAD/AnimateSnapshotView/Pods/Masonry/Masonry/MASCompositeConstraint.m -------------------------------------------------------------------------------- /AnimateSnapshotView/Pods/Masonry/Masonry/MASConstraint+Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokong/AnimateSnapShotView/HEAD/AnimateSnapshotView/Pods/Masonry/Masonry/MASConstraint+Private.h -------------------------------------------------------------------------------- /AnimateSnapshotView/Pods/Masonry/Masonry/MASConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokong/AnimateSnapShotView/HEAD/AnimateSnapshotView/Pods/Masonry/Masonry/MASConstraint.h -------------------------------------------------------------------------------- /AnimateSnapshotView/Pods/Masonry/Masonry/MASConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokong/AnimateSnapShotView/HEAD/AnimateSnapshotView/Pods/Masonry/Masonry/MASConstraint.m -------------------------------------------------------------------------------- /AnimateSnapshotView/Pods/Masonry/Masonry/MASConstraintMaker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokong/AnimateSnapShotView/HEAD/AnimateSnapshotView/Pods/Masonry/Masonry/MASConstraintMaker.h -------------------------------------------------------------------------------- /AnimateSnapshotView/Pods/Masonry/Masonry/MASConstraintMaker.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokong/AnimateSnapShotView/HEAD/AnimateSnapshotView/Pods/Masonry/Masonry/MASConstraintMaker.m -------------------------------------------------------------------------------- /AnimateSnapshotView/Pods/Masonry/Masonry/MASLayoutConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokong/AnimateSnapShotView/HEAD/AnimateSnapshotView/Pods/Masonry/Masonry/MASLayoutConstraint.h -------------------------------------------------------------------------------- /AnimateSnapshotView/Pods/Masonry/Masonry/MASLayoutConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokong/AnimateSnapShotView/HEAD/AnimateSnapshotView/Pods/Masonry/Masonry/MASLayoutConstraint.m -------------------------------------------------------------------------------- /AnimateSnapshotView/Pods/Masonry/Masonry/MASUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokong/AnimateSnapShotView/HEAD/AnimateSnapshotView/Pods/Masonry/Masonry/MASUtilities.h -------------------------------------------------------------------------------- /AnimateSnapshotView/Pods/Masonry/Masonry/MASViewAttribute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokong/AnimateSnapShotView/HEAD/AnimateSnapshotView/Pods/Masonry/Masonry/MASViewAttribute.h -------------------------------------------------------------------------------- /AnimateSnapshotView/Pods/Masonry/Masonry/MASViewAttribute.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokong/AnimateSnapShotView/HEAD/AnimateSnapshotView/Pods/Masonry/Masonry/MASViewAttribute.m -------------------------------------------------------------------------------- /AnimateSnapshotView/Pods/Masonry/Masonry/MASViewConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokong/AnimateSnapShotView/HEAD/AnimateSnapshotView/Pods/Masonry/Masonry/MASViewConstraint.h -------------------------------------------------------------------------------- /AnimateSnapshotView/Pods/Masonry/Masonry/MASViewConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokong/AnimateSnapShotView/HEAD/AnimateSnapshotView/Pods/Masonry/Masonry/MASViewConstraint.m -------------------------------------------------------------------------------- /AnimateSnapshotView/Pods/Masonry/Masonry/Masonry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokong/AnimateSnapShotView/HEAD/AnimateSnapshotView/Pods/Masonry/Masonry/Masonry.h -------------------------------------------------------------------------------- /AnimateSnapshotView/Pods/Masonry/Masonry/NSArray+MASAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokong/AnimateSnapShotView/HEAD/AnimateSnapshotView/Pods/Masonry/Masonry/NSArray+MASAdditions.h -------------------------------------------------------------------------------- /AnimateSnapshotView/Pods/Masonry/Masonry/NSArray+MASAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokong/AnimateSnapShotView/HEAD/AnimateSnapshotView/Pods/Masonry/Masonry/NSArray+MASAdditions.m -------------------------------------------------------------------------------- /AnimateSnapshotView/Pods/Masonry/Masonry/NSArray+MASShorthandAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokong/AnimateSnapShotView/HEAD/AnimateSnapshotView/Pods/Masonry/Masonry/NSArray+MASShorthandAdditions.h -------------------------------------------------------------------------------- /AnimateSnapshotView/Pods/Masonry/Masonry/NSLayoutConstraint+MASDebugAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokong/AnimateSnapShotView/HEAD/AnimateSnapshotView/Pods/Masonry/Masonry/NSLayoutConstraint+MASDebugAdditions.h -------------------------------------------------------------------------------- /AnimateSnapshotView/Pods/Masonry/Masonry/NSLayoutConstraint+MASDebugAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokong/AnimateSnapShotView/HEAD/AnimateSnapshotView/Pods/Masonry/Masonry/NSLayoutConstraint+MASDebugAdditions.m -------------------------------------------------------------------------------- /AnimateSnapshotView/Pods/Masonry/Masonry/View+MASAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokong/AnimateSnapShotView/HEAD/AnimateSnapshotView/Pods/Masonry/Masonry/View+MASAdditions.h -------------------------------------------------------------------------------- /AnimateSnapshotView/Pods/Masonry/Masonry/View+MASAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokong/AnimateSnapShotView/HEAD/AnimateSnapshotView/Pods/Masonry/Masonry/View+MASAdditions.m -------------------------------------------------------------------------------- /AnimateSnapshotView/Pods/Masonry/Masonry/View+MASShorthandAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokong/AnimateSnapShotView/HEAD/AnimateSnapshotView/Pods/Masonry/Masonry/View+MASShorthandAdditions.h -------------------------------------------------------------------------------- /AnimateSnapshotView/Pods/Masonry/Masonry/ViewController+MASAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokong/AnimateSnapShotView/HEAD/AnimateSnapshotView/Pods/Masonry/Masonry/ViewController+MASAdditions.h -------------------------------------------------------------------------------- /AnimateSnapshotView/Pods/Masonry/Masonry/ViewController+MASAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokong/AnimateSnapShotView/HEAD/AnimateSnapshotView/Pods/Masonry/Masonry/ViewController+MASAdditions.m -------------------------------------------------------------------------------- /AnimateSnapshotView/Pods/Masonry/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokong/AnimateSnapShotView/HEAD/AnimateSnapshotView/Pods/Masonry/README.md -------------------------------------------------------------------------------- /AnimateSnapshotView/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokong/AnimateSnapShotView/HEAD/AnimateSnapshotView/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /AnimateSnapshotView/Pods/Pods.xcodeproj/xcuserdata/mokong.xcuserdatad/xcschemes/Masonry.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokong/AnimateSnapShotView/HEAD/AnimateSnapshotView/Pods/Pods.xcodeproj/xcuserdata/mokong.xcuserdatad/xcschemes/Masonry.xcscheme -------------------------------------------------------------------------------- /AnimateSnapshotView/Pods/Pods.xcodeproj/xcuserdata/mokong.xcuserdatad/xcschemes/Pods-AnimateSnapshotView.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokong/AnimateSnapShotView/HEAD/AnimateSnapshotView/Pods/Pods.xcodeproj/xcuserdata/mokong.xcuserdatad/xcschemes/Pods-AnimateSnapshotView.xcscheme -------------------------------------------------------------------------------- /AnimateSnapshotView/Pods/Pods.xcodeproj/xcuserdata/mokong.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokong/AnimateSnapShotView/HEAD/AnimateSnapshotView/Pods/Pods.xcodeproj/xcuserdata/mokong.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /AnimateSnapshotView/Pods/Target Support Files/Masonry/Masonry-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokong/AnimateSnapShotView/HEAD/AnimateSnapshotView/Pods/Target Support Files/Masonry/Masonry-dummy.m -------------------------------------------------------------------------------- /AnimateSnapshotView/Pods/Target Support Files/Masonry/Masonry-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokong/AnimateSnapShotView/HEAD/AnimateSnapshotView/Pods/Target Support Files/Masonry/Masonry-prefix.pch -------------------------------------------------------------------------------- /AnimateSnapshotView/Pods/Target Support Files/Masonry/Masonry.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokong/AnimateSnapShotView/HEAD/AnimateSnapshotView/Pods/Target Support Files/Masonry/Masonry.xcconfig -------------------------------------------------------------------------------- /AnimateSnapshotView/Pods/Target Support Files/Pods-AnimateSnapshotView/Pods-AnimateSnapshotView-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokong/AnimateSnapShotView/HEAD/AnimateSnapshotView/Pods/Target Support Files/Pods-AnimateSnapshotView/Pods-AnimateSnapshotView-acknowledgements.markdown -------------------------------------------------------------------------------- /AnimateSnapshotView/Pods/Target Support Files/Pods-AnimateSnapshotView/Pods-AnimateSnapshotView-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokong/AnimateSnapShotView/HEAD/AnimateSnapshotView/Pods/Target Support Files/Pods-AnimateSnapshotView/Pods-AnimateSnapshotView-acknowledgements.plist -------------------------------------------------------------------------------- /AnimateSnapshotView/Pods/Target Support Files/Pods-AnimateSnapshotView/Pods-AnimateSnapshotView-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokong/AnimateSnapShotView/HEAD/AnimateSnapshotView/Pods/Target Support Files/Pods-AnimateSnapshotView/Pods-AnimateSnapshotView-dummy.m -------------------------------------------------------------------------------- /AnimateSnapshotView/Pods/Target Support Files/Pods-AnimateSnapshotView/Pods-AnimateSnapshotView-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokong/AnimateSnapShotView/HEAD/AnimateSnapshotView/Pods/Target Support Files/Pods-AnimateSnapshotView/Pods-AnimateSnapshotView-frameworks.sh -------------------------------------------------------------------------------- /AnimateSnapshotView/Pods/Target Support Files/Pods-AnimateSnapshotView/Pods-AnimateSnapshotView-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokong/AnimateSnapShotView/HEAD/AnimateSnapshotView/Pods/Target Support Files/Pods-AnimateSnapshotView/Pods-AnimateSnapshotView-resources.sh -------------------------------------------------------------------------------- /AnimateSnapshotView/Pods/Target Support Files/Pods-AnimateSnapshotView/Pods-AnimateSnapshotView.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokong/AnimateSnapShotView/HEAD/AnimateSnapshotView/Pods/Target Support Files/Pods-AnimateSnapshotView/Pods-AnimateSnapshotView.debug.xcconfig -------------------------------------------------------------------------------- /AnimateSnapshotView/Pods/Target Support Files/Pods-AnimateSnapshotView/Pods-AnimateSnapshotView.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokong/AnimateSnapShotView/HEAD/AnimateSnapshotView/Pods/Target Support Files/Pods-AnimateSnapshotView/Pods-AnimateSnapshotView.release.xcconfig -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokong/AnimateSnapShotView/HEAD/README.md --------------------------------------------------------------------------------