├── EvernoteAnimation.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ └── wangxuesen.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ └── wangxuesen.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ ├── EvernoteAnimation.xcscheme │ └── xcschememanagement.plist ├── EvernoteAnimation ├── AppDelegate.h ├── AppDelegate.m ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Info.plist ├── codes │ ├── EvernoteCollectionCell.h │ ├── EvernoteCollectionCell.m │ ├── EvernoteCollectionController.h │ ├── EvernoteCollectionController.m │ ├── EvernoteDetailController.h │ ├── EvernoteDetailController.m │ ├── EvernoteFlowLayout.h │ ├── EvernoteFlowLayout.m │ ├── EvernoteTransition.h │ └── EvernoteTransition.m └── main.m └── README.md /EvernoteAnimation.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imwangxuesen/EvernoteAnimation/HEAD/EvernoteAnimation.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /EvernoteAnimation.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imwangxuesen/EvernoteAnimation/HEAD/EvernoteAnimation.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /EvernoteAnimation.xcodeproj/project.xcworkspace/xcuserdata/wangxuesen.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imwangxuesen/EvernoteAnimation/HEAD/EvernoteAnimation.xcodeproj/project.xcworkspace/xcuserdata/wangxuesen.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /EvernoteAnimation.xcodeproj/xcuserdata/wangxuesen.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imwangxuesen/EvernoteAnimation/HEAD/EvernoteAnimation.xcodeproj/xcuserdata/wangxuesen.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /EvernoteAnimation.xcodeproj/xcuserdata/wangxuesen.xcuserdatad/xcschemes/EvernoteAnimation.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imwangxuesen/EvernoteAnimation/HEAD/EvernoteAnimation.xcodeproj/xcuserdata/wangxuesen.xcuserdatad/xcschemes/EvernoteAnimation.xcscheme -------------------------------------------------------------------------------- /EvernoteAnimation.xcodeproj/xcuserdata/wangxuesen.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imwangxuesen/EvernoteAnimation/HEAD/EvernoteAnimation.xcodeproj/xcuserdata/wangxuesen.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /EvernoteAnimation/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imwangxuesen/EvernoteAnimation/HEAD/EvernoteAnimation/AppDelegate.h -------------------------------------------------------------------------------- /EvernoteAnimation/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imwangxuesen/EvernoteAnimation/HEAD/EvernoteAnimation/AppDelegate.m -------------------------------------------------------------------------------- /EvernoteAnimation/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imwangxuesen/EvernoteAnimation/HEAD/EvernoteAnimation/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /EvernoteAnimation/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imwangxuesen/EvernoteAnimation/HEAD/EvernoteAnimation/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /EvernoteAnimation/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imwangxuesen/EvernoteAnimation/HEAD/EvernoteAnimation/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /EvernoteAnimation/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imwangxuesen/EvernoteAnimation/HEAD/EvernoteAnimation/Info.plist -------------------------------------------------------------------------------- /EvernoteAnimation/codes/EvernoteCollectionCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imwangxuesen/EvernoteAnimation/HEAD/EvernoteAnimation/codes/EvernoteCollectionCell.h -------------------------------------------------------------------------------- /EvernoteAnimation/codes/EvernoteCollectionCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imwangxuesen/EvernoteAnimation/HEAD/EvernoteAnimation/codes/EvernoteCollectionCell.m -------------------------------------------------------------------------------- /EvernoteAnimation/codes/EvernoteCollectionController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imwangxuesen/EvernoteAnimation/HEAD/EvernoteAnimation/codes/EvernoteCollectionController.h -------------------------------------------------------------------------------- /EvernoteAnimation/codes/EvernoteCollectionController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imwangxuesen/EvernoteAnimation/HEAD/EvernoteAnimation/codes/EvernoteCollectionController.m -------------------------------------------------------------------------------- /EvernoteAnimation/codes/EvernoteDetailController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imwangxuesen/EvernoteAnimation/HEAD/EvernoteAnimation/codes/EvernoteDetailController.h -------------------------------------------------------------------------------- /EvernoteAnimation/codes/EvernoteDetailController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imwangxuesen/EvernoteAnimation/HEAD/EvernoteAnimation/codes/EvernoteDetailController.m -------------------------------------------------------------------------------- /EvernoteAnimation/codes/EvernoteFlowLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imwangxuesen/EvernoteAnimation/HEAD/EvernoteAnimation/codes/EvernoteFlowLayout.h -------------------------------------------------------------------------------- /EvernoteAnimation/codes/EvernoteFlowLayout.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imwangxuesen/EvernoteAnimation/HEAD/EvernoteAnimation/codes/EvernoteFlowLayout.m -------------------------------------------------------------------------------- /EvernoteAnimation/codes/EvernoteTransition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imwangxuesen/EvernoteAnimation/HEAD/EvernoteAnimation/codes/EvernoteTransition.h -------------------------------------------------------------------------------- /EvernoteAnimation/codes/EvernoteTransition.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imwangxuesen/EvernoteAnimation/HEAD/EvernoteAnimation/codes/EvernoteTransition.m -------------------------------------------------------------------------------- /EvernoteAnimation/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imwangxuesen/EvernoteAnimation/HEAD/EvernoteAnimation/main.m -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imwangxuesen/EvernoteAnimation/HEAD/README.md --------------------------------------------------------------------------------