├── .gitignore ├── HYChangeableCollection.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── xcuserdata │ └── Hank.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ └── xcschememanagement.plist ├── HYChangeableCollection ├── AppDelegate.h ├── AppDelegate.m ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── HYChangeableCell.h ├── HYChangeableCell.m ├── Info.plist ├── ViewController.h ├── ViewController.m └── main.m ├── LICENSE ├── Masonry └── 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 ├── image ├── 1.jpg ├── 10.jpg ├── 2.jpg ├── 3.jpg ├── 4.jpg ├── 5.jpg ├── 6.jpg ├── 7.jpg ├── 8.jpg └── 9.jpg ├── 切换动画.gif └── 动画慢放.gif /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hank-Zhong/HYChangeableCollection/HEAD/.gitignore -------------------------------------------------------------------------------- /HYChangeableCollection.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hank-Zhong/HYChangeableCollection/HEAD/HYChangeableCollection.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /HYChangeableCollection.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hank-Zhong/HYChangeableCollection/HEAD/HYChangeableCollection.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /HYChangeableCollection.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hank-Zhong/HYChangeableCollection/HEAD/HYChangeableCollection.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /HYChangeableCollection.xcodeproj/xcuserdata/Hank.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hank-Zhong/HYChangeableCollection/HEAD/HYChangeableCollection.xcodeproj/xcuserdata/Hank.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /HYChangeableCollection.xcodeproj/xcuserdata/Hank.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hank-Zhong/HYChangeableCollection/HEAD/HYChangeableCollection.xcodeproj/xcuserdata/Hank.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /HYChangeableCollection/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hank-Zhong/HYChangeableCollection/HEAD/HYChangeableCollection/AppDelegate.h -------------------------------------------------------------------------------- /HYChangeableCollection/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hank-Zhong/HYChangeableCollection/HEAD/HYChangeableCollection/AppDelegate.m -------------------------------------------------------------------------------- /HYChangeableCollection/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hank-Zhong/HYChangeableCollection/HEAD/HYChangeableCollection/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /HYChangeableCollection/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hank-Zhong/HYChangeableCollection/HEAD/HYChangeableCollection/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /HYChangeableCollection/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hank-Zhong/HYChangeableCollection/HEAD/HYChangeableCollection/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /HYChangeableCollection/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hank-Zhong/HYChangeableCollection/HEAD/HYChangeableCollection/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /HYChangeableCollection/HYChangeableCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hank-Zhong/HYChangeableCollection/HEAD/HYChangeableCollection/HYChangeableCell.h -------------------------------------------------------------------------------- /HYChangeableCollection/HYChangeableCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hank-Zhong/HYChangeableCollection/HEAD/HYChangeableCollection/HYChangeableCell.m -------------------------------------------------------------------------------- /HYChangeableCollection/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hank-Zhong/HYChangeableCollection/HEAD/HYChangeableCollection/Info.plist -------------------------------------------------------------------------------- /HYChangeableCollection/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hank-Zhong/HYChangeableCollection/HEAD/HYChangeableCollection/ViewController.h -------------------------------------------------------------------------------- /HYChangeableCollection/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hank-Zhong/HYChangeableCollection/HEAD/HYChangeableCollection/ViewController.m -------------------------------------------------------------------------------- /HYChangeableCollection/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hank-Zhong/HYChangeableCollection/HEAD/HYChangeableCollection/main.m -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hank-Zhong/HYChangeableCollection/HEAD/LICENSE -------------------------------------------------------------------------------- /Masonry/Masonry/MASCompositeConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hank-Zhong/HYChangeableCollection/HEAD/Masonry/Masonry/MASCompositeConstraint.h -------------------------------------------------------------------------------- /Masonry/Masonry/MASCompositeConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hank-Zhong/HYChangeableCollection/HEAD/Masonry/Masonry/MASCompositeConstraint.m -------------------------------------------------------------------------------- /Masonry/Masonry/MASConstraint+Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hank-Zhong/HYChangeableCollection/HEAD/Masonry/Masonry/MASConstraint+Private.h -------------------------------------------------------------------------------- /Masonry/Masonry/MASConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hank-Zhong/HYChangeableCollection/HEAD/Masonry/Masonry/MASConstraint.h -------------------------------------------------------------------------------- /Masonry/Masonry/MASConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hank-Zhong/HYChangeableCollection/HEAD/Masonry/Masonry/MASConstraint.m -------------------------------------------------------------------------------- /Masonry/Masonry/MASConstraintMaker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hank-Zhong/HYChangeableCollection/HEAD/Masonry/Masonry/MASConstraintMaker.h -------------------------------------------------------------------------------- /Masonry/Masonry/MASConstraintMaker.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hank-Zhong/HYChangeableCollection/HEAD/Masonry/Masonry/MASConstraintMaker.m -------------------------------------------------------------------------------- /Masonry/Masonry/MASLayoutConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hank-Zhong/HYChangeableCollection/HEAD/Masonry/Masonry/MASLayoutConstraint.h -------------------------------------------------------------------------------- /Masonry/Masonry/MASLayoutConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hank-Zhong/HYChangeableCollection/HEAD/Masonry/Masonry/MASLayoutConstraint.m -------------------------------------------------------------------------------- /Masonry/Masonry/MASUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hank-Zhong/HYChangeableCollection/HEAD/Masonry/Masonry/MASUtilities.h -------------------------------------------------------------------------------- /Masonry/Masonry/MASViewAttribute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hank-Zhong/HYChangeableCollection/HEAD/Masonry/Masonry/MASViewAttribute.h -------------------------------------------------------------------------------- /Masonry/Masonry/MASViewAttribute.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hank-Zhong/HYChangeableCollection/HEAD/Masonry/Masonry/MASViewAttribute.m -------------------------------------------------------------------------------- /Masonry/Masonry/MASViewConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hank-Zhong/HYChangeableCollection/HEAD/Masonry/Masonry/MASViewConstraint.h -------------------------------------------------------------------------------- /Masonry/Masonry/MASViewConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hank-Zhong/HYChangeableCollection/HEAD/Masonry/Masonry/MASViewConstraint.m -------------------------------------------------------------------------------- /Masonry/Masonry/Masonry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hank-Zhong/HYChangeableCollection/HEAD/Masonry/Masonry/Masonry.h -------------------------------------------------------------------------------- /Masonry/Masonry/NSArray+MASAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hank-Zhong/HYChangeableCollection/HEAD/Masonry/Masonry/NSArray+MASAdditions.h -------------------------------------------------------------------------------- /Masonry/Masonry/NSArray+MASAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hank-Zhong/HYChangeableCollection/HEAD/Masonry/Masonry/NSArray+MASAdditions.m -------------------------------------------------------------------------------- /Masonry/Masonry/NSArray+MASShorthandAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hank-Zhong/HYChangeableCollection/HEAD/Masonry/Masonry/NSArray+MASShorthandAdditions.h -------------------------------------------------------------------------------- /Masonry/Masonry/NSLayoutConstraint+MASDebugAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hank-Zhong/HYChangeableCollection/HEAD/Masonry/Masonry/NSLayoutConstraint+MASDebugAdditions.h -------------------------------------------------------------------------------- /Masonry/Masonry/NSLayoutConstraint+MASDebugAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hank-Zhong/HYChangeableCollection/HEAD/Masonry/Masonry/NSLayoutConstraint+MASDebugAdditions.m -------------------------------------------------------------------------------- /Masonry/Masonry/View+MASAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hank-Zhong/HYChangeableCollection/HEAD/Masonry/Masonry/View+MASAdditions.h -------------------------------------------------------------------------------- /Masonry/Masonry/View+MASAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hank-Zhong/HYChangeableCollection/HEAD/Masonry/Masonry/View+MASAdditions.m -------------------------------------------------------------------------------- /Masonry/Masonry/View+MASShorthandAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hank-Zhong/HYChangeableCollection/HEAD/Masonry/Masonry/View+MASShorthandAdditions.h -------------------------------------------------------------------------------- /Masonry/Masonry/ViewController+MASAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hank-Zhong/HYChangeableCollection/HEAD/Masonry/Masonry/ViewController+MASAdditions.h -------------------------------------------------------------------------------- /Masonry/Masonry/ViewController+MASAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hank-Zhong/HYChangeableCollection/HEAD/Masonry/Masonry/ViewController+MASAdditions.m -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hank-Zhong/HYChangeableCollection/HEAD/README.md -------------------------------------------------------------------------------- /image/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hank-Zhong/HYChangeableCollection/HEAD/image/1.jpg -------------------------------------------------------------------------------- /image/10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hank-Zhong/HYChangeableCollection/HEAD/image/10.jpg -------------------------------------------------------------------------------- /image/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hank-Zhong/HYChangeableCollection/HEAD/image/2.jpg -------------------------------------------------------------------------------- /image/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hank-Zhong/HYChangeableCollection/HEAD/image/3.jpg -------------------------------------------------------------------------------- /image/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hank-Zhong/HYChangeableCollection/HEAD/image/4.jpg -------------------------------------------------------------------------------- /image/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hank-Zhong/HYChangeableCollection/HEAD/image/5.jpg -------------------------------------------------------------------------------- /image/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hank-Zhong/HYChangeableCollection/HEAD/image/6.jpg -------------------------------------------------------------------------------- /image/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hank-Zhong/HYChangeableCollection/HEAD/image/7.jpg -------------------------------------------------------------------------------- /image/8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hank-Zhong/HYChangeableCollection/HEAD/image/8.jpg -------------------------------------------------------------------------------- /image/9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hank-Zhong/HYChangeableCollection/HEAD/image/9.jpg -------------------------------------------------------------------------------- /切换动画.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hank-Zhong/HYChangeableCollection/HEAD/切换动画.gif -------------------------------------------------------------------------------- /动画慢放.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hank-Zhong/HYChangeableCollection/HEAD/动画慢放.gif --------------------------------------------------------------------------------