├── AutoLayoutShowcase.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ └── AutoLayoutShowcase.xccheckout │ └── xcuserdata │ │ └── phil.xcuserdatad │ │ └── WorkspaceSettings.xcsettings └── xcuserdata │ └── phil.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ ├── AutoLayoutShowcase.xcscheme │ └── xcschememanagement.plist ├── AutoLayoutShowcase ├── ALCatalogViewController.swift ├── ALDynamicLayoutViewController.swift ├── ALLayoutContainerViewController.swift ├── ALNavigationController.swift ├── ALProfileTableViewCell.swift ├── ALProfileViewController.swift ├── ALScaleLayoutViewController.swift ├── AppDelegate.swift ├── AutoLayoutShowcase-Bridging-Header.h ├── Base.lproj │ ├── LaunchScreen.xib │ ├── Main.storyboard │ └── Main.storyboard.backup.storyboard ├── Bridging-Header.h ├── Images.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── avatar.imageset │ │ ├── Contents.json │ │ └── avatar.png │ ├── bear.imageset │ │ ├── Contents.json │ │ └── bear.png │ ├── cell_icon.imageset │ │ ├── Contents.json │ │ └── icon1.png │ ├── header_bg.imageset │ │ ├── Contents.json │ │ └── header_bg.png │ ├── icon_comments.imageset │ │ ├── Contents.json │ │ └── icon_comments@2x.png │ ├── icon_location.imageset │ │ ├── Contents.json │ │ └── icon_location@2x.png │ └── icon_star.imageset │ │ ├── Contents.json │ │ └── icon_follow@2x.png ├── Info.plist ├── NSDate+Format.swift ├── NSLayoutConstraint+Separator.swift ├── TRCircleAvatarView.swift ├── TRProfileHeaderView.swift ├── TRProfileHeaderView.xib ├── UIColor+Hex.swift ├── UIScrollView+ParallaxHeader.h ├── UIScrollView+ParallaxHeader.m ├── UITableView+ContentTouches.swift └── UIView+SpringAnimations.swift └── Resources ├── avatar.png ├── bear.png ├── dynamic1.png ├── header_bg.png ├── icon1.png ├── marks_1.png ├── parallax1.png └── scale1.png /AutoLayoutShowcase.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philcn/Auto-Layout-Showcase/HEAD/AutoLayoutShowcase.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /AutoLayoutShowcase.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philcn/Auto-Layout-Showcase/HEAD/AutoLayoutShowcase.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /AutoLayoutShowcase.xcodeproj/project.xcworkspace/xcshareddata/AutoLayoutShowcase.xccheckout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philcn/Auto-Layout-Showcase/HEAD/AutoLayoutShowcase.xcodeproj/project.xcworkspace/xcshareddata/AutoLayoutShowcase.xccheckout -------------------------------------------------------------------------------- /AutoLayoutShowcase.xcodeproj/project.xcworkspace/xcuserdata/phil.xcuserdatad/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philcn/Auto-Layout-Showcase/HEAD/AutoLayoutShowcase.xcodeproj/project.xcworkspace/xcuserdata/phil.xcuserdatad/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /AutoLayoutShowcase.xcodeproj/xcuserdata/phil.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philcn/Auto-Layout-Showcase/HEAD/AutoLayoutShowcase.xcodeproj/xcuserdata/phil.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /AutoLayoutShowcase.xcodeproj/xcuserdata/phil.xcuserdatad/xcschemes/AutoLayoutShowcase.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philcn/Auto-Layout-Showcase/HEAD/AutoLayoutShowcase.xcodeproj/xcuserdata/phil.xcuserdatad/xcschemes/AutoLayoutShowcase.xcscheme -------------------------------------------------------------------------------- /AutoLayoutShowcase.xcodeproj/xcuserdata/phil.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philcn/Auto-Layout-Showcase/HEAD/AutoLayoutShowcase.xcodeproj/xcuserdata/phil.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /AutoLayoutShowcase/ALCatalogViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philcn/Auto-Layout-Showcase/HEAD/AutoLayoutShowcase/ALCatalogViewController.swift -------------------------------------------------------------------------------- /AutoLayoutShowcase/ALDynamicLayoutViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philcn/Auto-Layout-Showcase/HEAD/AutoLayoutShowcase/ALDynamicLayoutViewController.swift -------------------------------------------------------------------------------- /AutoLayoutShowcase/ALLayoutContainerViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philcn/Auto-Layout-Showcase/HEAD/AutoLayoutShowcase/ALLayoutContainerViewController.swift -------------------------------------------------------------------------------- /AutoLayoutShowcase/ALNavigationController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philcn/Auto-Layout-Showcase/HEAD/AutoLayoutShowcase/ALNavigationController.swift -------------------------------------------------------------------------------- /AutoLayoutShowcase/ALProfileTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philcn/Auto-Layout-Showcase/HEAD/AutoLayoutShowcase/ALProfileTableViewCell.swift -------------------------------------------------------------------------------- /AutoLayoutShowcase/ALProfileViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philcn/Auto-Layout-Showcase/HEAD/AutoLayoutShowcase/ALProfileViewController.swift -------------------------------------------------------------------------------- /AutoLayoutShowcase/ALScaleLayoutViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philcn/Auto-Layout-Showcase/HEAD/AutoLayoutShowcase/ALScaleLayoutViewController.swift -------------------------------------------------------------------------------- /AutoLayoutShowcase/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philcn/Auto-Layout-Showcase/HEAD/AutoLayoutShowcase/AppDelegate.swift -------------------------------------------------------------------------------- /AutoLayoutShowcase/AutoLayoutShowcase-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philcn/Auto-Layout-Showcase/HEAD/AutoLayoutShowcase/AutoLayoutShowcase-Bridging-Header.h -------------------------------------------------------------------------------- /AutoLayoutShowcase/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philcn/Auto-Layout-Showcase/HEAD/AutoLayoutShowcase/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /AutoLayoutShowcase/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philcn/Auto-Layout-Showcase/HEAD/AutoLayoutShowcase/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /AutoLayoutShowcase/Base.lproj/Main.storyboard.backup.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philcn/Auto-Layout-Showcase/HEAD/AutoLayoutShowcase/Base.lproj/Main.storyboard.backup.storyboard -------------------------------------------------------------------------------- /AutoLayoutShowcase/Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philcn/Auto-Layout-Showcase/HEAD/AutoLayoutShowcase/Bridging-Header.h -------------------------------------------------------------------------------- /AutoLayoutShowcase/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philcn/Auto-Layout-Showcase/HEAD/AutoLayoutShowcase/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /AutoLayoutShowcase/Images.xcassets/avatar.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philcn/Auto-Layout-Showcase/HEAD/AutoLayoutShowcase/Images.xcassets/avatar.imageset/Contents.json -------------------------------------------------------------------------------- /AutoLayoutShowcase/Images.xcassets/avatar.imageset/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philcn/Auto-Layout-Showcase/HEAD/AutoLayoutShowcase/Images.xcassets/avatar.imageset/avatar.png -------------------------------------------------------------------------------- /AutoLayoutShowcase/Images.xcassets/bear.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philcn/Auto-Layout-Showcase/HEAD/AutoLayoutShowcase/Images.xcassets/bear.imageset/Contents.json -------------------------------------------------------------------------------- /AutoLayoutShowcase/Images.xcassets/bear.imageset/bear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philcn/Auto-Layout-Showcase/HEAD/AutoLayoutShowcase/Images.xcassets/bear.imageset/bear.png -------------------------------------------------------------------------------- /AutoLayoutShowcase/Images.xcassets/cell_icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philcn/Auto-Layout-Showcase/HEAD/AutoLayoutShowcase/Images.xcassets/cell_icon.imageset/Contents.json -------------------------------------------------------------------------------- /AutoLayoutShowcase/Images.xcassets/cell_icon.imageset/icon1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philcn/Auto-Layout-Showcase/HEAD/AutoLayoutShowcase/Images.xcassets/cell_icon.imageset/icon1.png -------------------------------------------------------------------------------- /AutoLayoutShowcase/Images.xcassets/header_bg.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philcn/Auto-Layout-Showcase/HEAD/AutoLayoutShowcase/Images.xcassets/header_bg.imageset/Contents.json -------------------------------------------------------------------------------- /AutoLayoutShowcase/Images.xcassets/header_bg.imageset/header_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philcn/Auto-Layout-Showcase/HEAD/AutoLayoutShowcase/Images.xcassets/header_bg.imageset/header_bg.png -------------------------------------------------------------------------------- /AutoLayoutShowcase/Images.xcassets/icon_comments.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philcn/Auto-Layout-Showcase/HEAD/AutoLayoutShowcase/Images.xcassets/icon_comments.imageset/Contents.json -------------------------------------------------------------------------------- /AutoLayoutShowcase/Images.xcassets/icon_comments.imageset/icon_comments@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philcn/Auto-Layout-Showcase/HEAD/AutoLayoutShowcase/Images.xcassets/icon_comments.imageset/icon_comments@2x.png -------------------------------------------------------------------------------- /AutoLayoutShowcase/Images.xcassets/icon_location.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philcn/Auto-Layout-Showcase/HEAD/AutoLayoutShowcase/Images.xcassets/icon_location.imageset/Contents.json -------------------------------------------------------------------------------- /AutoLayoutShowcase/Images.xcassets/icon_location.imageset/icon_location@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philcn/Auto-Layout-Showcase/HEAD/AutoLayoutShowcase/Images.xcassets/icon_location.imageset/icon_location@2x.png -------------------------------------------------------------------------------- /AutoLayoutShowcase/Images.xcassets/icon_star.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philcn/Auto-Layout-Showcase/HEAD/AutoLayoutShowcase/Images.xcassets/icon_star.imageset/Contents.json -------------------------------------------------------------------------------- /AutoLayoutShowcase/Images.xcassets/icon_star.imageset/icon_follow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philcn/Auto-Layout-Showcase/HEAD/AutoLayoutShowcase/Images.xcassets/icon_star.imageset/icon_follow@2x.png -------------------------------------------------------------------------------- /AutoLayoutShowcase/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philcn/Auto-Layout-Showcase/HEAD/AutoLayoutShowcase/Info.plist -------------------------------------------------------------------------------- /AutoLayoutShowcase/NSDate+Format.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philcn/Auto-Layout-Showcase/HEAD/AutoLayoutShowcase/NSDate+Format.swift -------------------------------------------------------------------------------- /AutoLayoutShowcase/NSLayoutConstraint+Separator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philcn/Auto-Layout-Showcase/HEAD/AutoLayoutShowcase/NSLayoutConstraint+Separator.swift -------------------------------------------------------------------------------- /AutoLayoutShowcase/TRCircleAvatarView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philcn/Auto-Layout-Showcase/HEAD/AutoLayoutShowcase/TRCircleAvatarView.swift -------------------------------------------------------------------------------- /AutoLayoutShowcase/TRProfileHeaderView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philcn/Auto-Layout-Showcase/HEAD/AutoLayoutShowcase/TRProfileHeaderView.swift -------------------------------------------------------------------------------- /AutoLayoutShowcase/TRProfileHeaderView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philcn/Auto-Layout-Showcase/HEAD/AutoLayoutShowcase/TRProfileHeaderView.xib -------------------------------------------------------------------------------- /AutoLayoutShowcase/UIColor+Hex.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philcn/Auto-Layout-Showcase/HEAD/AutoLayoutShowcase/UIColor+Hex.swift -------------------------------------------------------------------------------- /AutoLayoutShowcase/UIScrollView+ParallaxHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philcn/Auto-Layout-Showcase/HEAD/AutoLayoutShowcase/UIScrollView+ParallaxHeader.h -------------------------------------------------------------------------------- /AutoLayoutShowcase/UIScrollView+ParallaxHeader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philcn/Auto-Layout-Showcase/HEAD/AutoLayoutShowcase/UIScrollView+ParallaxHeader.m -------------------------------------------------------------------------------- /AutoLayoutShowcase/UITableView+ContentTouches.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philcn/Auto-Layout-Showcase/HEAD/AutoLayoutShowcase/UITableView+ContentTouches.swift -------------------------------------------------------------------------------- /AutoLayoutShowcase/UIView+SpringAnimations.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philcn/Auto-Layout-Showcase/HEAD/AutoLayoutShowcase/UIView+SpringAnimations.swift -------------------------------------------------------------------------------- /Resources/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philcn/Auto-Layout-Showcase/HEAD/Resources/avatar.png -------------------------------------------------------------------------------- /Resources/bear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philcn/Auto-Layout-Showcase/HEAD/Resources/bear.png -------------------------------------------------------------------------------- /Resources/dynamic1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philcn/Auto-Layout-Showcase/HEAD/Resources/dynamic1.png -------------------------------------------------------------------------------- /Resources/header_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philcn/Auto-Layout-Showcase/HEAD/Resources/header_bg.png -------------------------------------------------------------------------------- /Resources/icon1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philcn/Auto-Layout-Showcase/HEAD/Resources/icon1.png -------------------------------------------------------------------------------- /Resources/marks_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philcn/Auto-Layout-Showcase/HEAD/Resources/marks_1.png -------------------------------------------------------------------------------- /Resources/parallax1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philcn/Auto-Layout-Showcase/HEAD/Resources/parallax1.png -------------------------------------------------------------------------------- /Resources/scale1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philcn/Auto-Layout-Showcase/HEAD/Resources/scale1.png --------------------------------------------------------------------------------