├── .gitignore ├── CarouselCollectionView ├── CarouselCollectionView.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── CarouselCollectionView │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Info.plist │ ├── SceneDelegate.swift │ └── ViewController.swift ├── Readme.md └── carousel.gif ├── CollectionView └── Common │ ├── LivePhotoPlayground │ ├── LivePhotoPlayground.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ ├── LivePhotoPlayground │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── Base.lproj │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ │ ├── ExUICollectionView.swift │ │ ├── Info.plist │ │ ├── LivePhotoCollectionViewCell.swift │ │ ├── LivePhotoFetcher.swift │ │ ├── LivePhotoViewController.swift │ │ └── LivePhotosViewController.swift │ └── LivePhotoPlaygroundTests │ │ ├── Info.plist │ │ └── LivePhotoPlaygroundTests.swift │ └── livephotoplayground.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ └── IDEWorkspaceChecks.plist ├── GestureRecognizer ├── InfiniteView.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── InfiniteView │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── DoublyCircularLinkedList.swift │ ├── InfiniteView.swift │ ├── Info.plist │ └── ViewController.swift ├── InfiniteViewTests │ ├── InfiniteViewTests.swift │ └── Info.plist └── InfiniteViewUITests │ ├── InfiniteViewUITests.swift │ └── Info.plist ├── InfiniteView ├── InfiniteView.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── InfiniteView │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── DoublyCircularLinkedList.swift │ ├── InfiniteView.swift │ ├── Info.plist │ └── ViewController.swift ├── InfiniteViewTests │ ├── InfiniteViewTests.swift │ └── Info.plist └── InfiniteViewUITests │ ├── InfiniteViewUITests.swift │ └── Info.plist ├── LICENSE ├── NumberCounter ├── NumberCounter.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── NumberCounter │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── CPNumberCounterView.h │ ├── CPNumberCounterView.m │ ├── CPQuantityCounterView.h │ ├── CPQuantityCounterView.m │ ├── Info.plist │ ├── ViewController.h │ ├── ViewController.m │ └── main.m ├── README.md └── numbercounterview.gif ├── Performance └── signposts │ ├── LivePhotoPlayground │ ├── LivePhotoPlayground.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ ├── LivePhotoPlayground │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── Base.lproj │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ │ ├── ExUICollectionView.swift │ │ ├── Info.plist │ │ ├── LivePhotoCollectionViewCell.swift │ │ ├── LivePhotoFetcher.swift │ │ ├── LivePhotoViewController.swift │ │ └── LivePhotosViewController.swift │ └── LivePhotoPlaygroundTests │ │ ├── Info.plist │ │ └── LivePhotoPlaygroundTests.swift │ └── livephotoplayground.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ └── IDEWorkspaceChecks.plist ├── README.md ├── Safe Area ├── SafeArea.xcworkspace │ └── contents.xcworkspacedata └── SafeAreaSample │ ├── SafeAreaSample.xcodeproj │ └── project.pbxproj │ └── SafeAreaSample │ ├── AppDelegate.swift │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── NavigationChildViewController.swift │ ├── NavigationRootViewController.swift │ ├── SafeAreaBorderView.swift │ └── ViewController.swift ├── ScrollView └── PinchToZoom │ ├── zoom.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── zoom │ ├── AppDelegate.swift │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── DetailViewController.swift │ ├── Info.plist │ └── ViewController.swift ├── StackView ├── StackViewInScrollView │ ├── AppStore │ │ ├── AppStore.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── project.xcworkspace │ │ │ │ └── contents.xcworkspacedata │ │ ├── AppStore │ │ │ ├── AppCell.swift │ │ │ ├── AppDelegate.swift │ │ │ ├── AppDetailInfo.swift │ │ │ ├── AppDetailViewController.swift │ │ │ ├── AppInfo.swift │ │ │ ├── AppListQueryService.swift │ │ │ ├── AppListViewController.swift │ │ │ ├── AppQueryService.swift │ │ │ ├── Assets.xcassets │ │ │ │ └── AppIcon.appiconset │ │ │ │ │ └── Contents.json │ │ │ ├── AsyncUIImageView.swift │ │ │ ├── Base.lproj │ │ │ │ ├── LaunchScreen.storyboard │ │ │ │ └── Main.storyboard │ │ │ ├── Info.plist │ │ │ ├── QueryService.swift │ │ │ └── ScreenshotCell.swift │ │ └── AppStoreTests │ │ │ ├── AppStoreTests.swift │ │ │ └── Info.plist │ └── StackViewInScrollView.md └── StackViewRotation │ ├── StackViewRotation.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── StackViewRotation │ ├── AppDelegate.swift │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ └── ViewController.swift ├── TableView └── TableviewFixedHeader │ ├── Readme.md │ ├── Tableview.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist │ ├── Tableview │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Info.plist │ ├── SceneDelegate.swift │ └── ViewController.swift │ └── tableview.gif └── ViewController ├── Rotation ├── Rotation.md ├── Rotation_appdelegate │ ├── Rotation1.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ └── Rotation1 │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ │ ├── Info.plist │ │ └── ViewController.swift ├── Rotation_appdelegate_navigation │ ├── Rotation1.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ └── Rotation1 │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ │ ├── Info.plist │ │ └── ViewController.swift ├── Rotation_infoPlist │ ├── Rotation1.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ └── Rotation1 │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ │ ├── Info.plist │ │ └── ViewController.swift ├── Rotation_infoPlist_navigation │ ├── Rotation1.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ └── Rotation1 │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ │ ├── Info.plist │ │ └── ViewController.swift ├── Rotation_navigation │ ├── Rotation1.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ └── Rotation1 │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ │ ├── DetailViewController.swift │ │ ├── Info.plist │ │ ├── MyNavigationController.swift │ │ └── ViewController.swift ├── Rotation_navigation_child │ ├── Rotation1.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ └── Rotation1 │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ │ ├── DetailViewController.swift │ │ ├── Info.plist │ │ ├── MyNavigationController.swift │ │ └── ViewController.swift ├── Rotation_navigation_child_force_landscape │ ├── Rotation1.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ └── Rotation1 │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ │ ├── DetailViewController.swift │ │ ├── Info.plist │ │ ├── MyNavigationController.swift │ │ └── ViewController.swift ├── Rotation_navigation_portrait_child_only_landscape │ ├── Rotation1.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ └── Rotation1 │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ │ ├── DetailViewController.swift │ │ ├── Info.plist │ │ ├── MyNavigationController.swift │ │ └── ViewController.swift └── Rotation_navigation_portrait_child_only_landscape_2 │ ├── Rotation1.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── Rotation1 │ ├── AppDelegate.swift │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── DetailViewController.swift │ ├── Info.plist │ ├── MyNavigationController.swift │ └── ViewController.swift ├── Transitions └── PhotoViewer │ ├── LivePhotoPlayground │ ├── LivePhotoPlayground.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ ├── LivePhotoPlayground │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── Base.lproj │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ │ ├── Info.plist │ │ ├── LivePhotoCollectionViewCell.swift │ │ ├── LivePhotoViewController.swift │ │ ├── LivePhotosViewController.swift │ │ ├── PhotoCollectionViewCell.swift │ │ ├── PhotoFetcher.swift │ │ ├── RevealAnimator.swift │ │ └── ZoomablePhotoView │ │ │ ├── ZoomablePhotoView.swift │ │ │ └── ZoomablePhotoView.xib │ └── LivePhotoPlaygroundTests │ │ ├── Info.plist │ │ └── LivePhotoPlaygroundTests.swift │ └── livephotoplayground.xcworkspace │ └── contents.xcworkspacedata └── ViewState ├── Rotation1.xcodeproj ├── project.pbxproj └── project.xcworkspace │ └── contents.xcworkspacedata ├── Rotation1 ├── AppDelegate.swift ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── DetailViewController.swift ├── Info.plist ├── MyNavigationController.swift └── ViewController.swift ├── ViewStates.png ├── ViewStatesOfNavigationController.md └── ViewStatesOfPeekAndPop.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/.gitignore -------------------------------------------------------------------------------- /CarouselCollectionView/CarouselCollectionView.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/CarouselCollectionView/CarouselCollectionView.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /CarouselCollectionView/CarouselCollectionView.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/CarouselCollectionView/CarouselCollectionView.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /CarouselCollectionView/CarouselCollectionView.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/CarouselCollectionView/CarouselCollectionView.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /CarouselCollectionView/CarouselCollectionView/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/CarouselCollectionView/CarouselCollectionView/AppDelegate.swift -------------------------------------------------------------------------------- /CarouselCollectionView/CarouselCollectionView/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/CarouselCollectionView/CarouselCollectionView/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /CarouselCollectionView/CarouselCollectionView/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/CarouselCollectionView/CarouselCollectionView/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /CarouselCollectionView/CarouselCollectionView/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/CarouselCollectionView/CarouselCollectionView/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /CarouselCollectionView/CarouselCollectionView/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/CarouselCollectionView/CarouselCollectionView/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /CarouselCollectionView/CarouselCollectionView/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/CarouselCollectionView/CarouselCollectionView/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /CarouselCollectionView/CarouselCollectionView/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/CarouselCollectionView/CarouselCollectionView/Info.plist -------------------------------------------------------------------------------- /CarouselCollectionView/CarouselCollectionView/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/CarouselCollectionView/CarouselCollectionView/SceneDelegate.swift -------------------------------------------------------------------------------- /CarouselCollectionView/CarouselCollectionView/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/CarouselCollectionView/CarouselCollectionView/ViewController.swift -------------------------------------------------------------------------------- /CarouselCollectionView/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/CarouselCollectionView/Readme.md -------------------------------------------------------------------------------- /CarouselCollectionView/carousel.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/CarouselCollectionView/carousel.gif -------------------------------------------------------------------------------- /CollectionView/Common/LivePhotoPlayground/LivePhotoPlayground.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/CollectionView/Common/LivePhotoPlayground/LivePhotoPlayground.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /CollectionView/Common/LivePhotoPlayground/LivePhotoPlayground.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/CollectionView/Common/LivePhotoPlayground/LivePhotoPlayground.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /CollectionView/Common/LivePhotoPlayground/LivePhotoPlayground/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/CollectionView/Common/LivePhotoPlayground/LivePhotoPlayground/AppDelegate.swift -------------------------------------------------------------------------------- /CollectionView/Common/LivePhotoPlayground/LivePhotoPlayground/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/CollectionView/Common/LivePhotoPlayground/LivePhotoPlayground/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /CollectionView/Common/LivePhotoPlayground/LivePhotoPlayground/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/CollectionView/Common/LivePhotoPlayground/LivePhotoPlayground/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /CollectionView/Common/LivePhotoPlayground/LivePhotoPlayground/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/CollectionView/Common/LivePhotoPlayground/LivePhotoPlayground/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /CollectionView/Common/LivePhotoPlayground/LivePhotoPlayground/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/CollectionView/Common/LivePhotoPlayground/LivePhotoPlayground/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /CollectionView/Common/LivePhotoPlayground/LivePhotoPlayground/ExUICollectionView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/CollectionView/Common/LivePhotoPlayground/LivePhotoPlayground/ExUICollectionView.swift -------------------------------------------------------------------------------- /CollectionView/Common/LivePhotoPlayground/LivePhotoPlayground/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/CollectionView/Common/LivePhotoPlayground/LivePhotoPlayground/Info.plist -------------------------------------------------------------------------------- /CollectionView/Common/LivePhotoPlayground/LivePhotoPlayground/LivePhotoCollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/CollectionView/Common/LivePhotoPlayground/LivePhotoPlayground/LivePhotoCollectionViewCell.swift -------------------------------------------------------------------------------- /CollectionView/Common/LivePhotoPlayground/LivePhotoPlayground/LivePhotoFetcher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/CollectionView/Common/LivePhotoPlayground/LivePhotoPlayground/LivePhotoFetcher.swift -------------------------------------------------------------------------------- /CollectionView/Common/LivePhotoPlayground/LivePhotoPlayground/LivePhotoViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/CollectionView/Common/LivePhotoPlayground/LivePhotoPlayground/LivePhotoViewController.swift -------------------------------------------------------------------------------- /CollectionView/Common/LivePhotoPlayground/LivePhotoPlayground/LivePhotosViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/CollectionView/Common/LivePhotoPlayground/LivePhotoPlayground/LivePhotosViewController.swift -------------------------------------------------------------------------------- /CollectionView/Common/LivePhotoPlayground/LivePhotoPlaygroundTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/CollectionView/Common/LivePhotoPlayground/LivePhotoPlaygroundTests/Info.plist -------------------------------------------------------------------------------- /CollectionView/Common/LivePhotoPlayground/LivePhotoPlaygroundTests/LivePhotoPlaygroundTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/CollectionView/Common/LivePhotoPlayground/LivePhotoPlaygroundTests/LivePhotoPlaygroundTests.swift -------------------------------------------------------------------------------- /CollectionView/Common/livephotoplayground.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/CollectionView/Common/livephotoplayground.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /CollectionView/Common/livephotoplayground.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/CollectionView/Common/livephotoplayground.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /GestureRecognizer/InfiniteView.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/GestureRecognizer/InfiniteView.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /GestureRecognizer/InfiniteView.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/GestureRecognizer/InfiniteView.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /GestureRecognizer/InfiniteView.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/GestureRecognizer/InfiniteView.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /GestureRecognizer/InfiniteView/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/GestureRecognizer/InfiniteView/AppDelegate.swift -------------------------------------------------------------------------------- /GestureRecognizer/InfiniteView/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/GestureRecognizer/InfiniteView/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /GestureRecognizer/InfiniteView/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/GestureRecognizer/InfiniteView/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /GestureRecognizer/InfiniteView/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/GestureRecognizer/InfiniteView/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /GestureRecognizer/InfiniteView/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/GestureRecognizer/InfiniteView/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /GestureRecognizer/InfiniteView/DoublyCircularLinkedList.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/GestureRecognizer/InfiniteView/DoublyCircularLinkedList.swift -------------------------------------------------------------------------------- /GestureRecognizer/InfiniteView/InfiniteView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/GestureRecognizer/InfiniteView/InfiniteView.swift -------------------------------------------------------------------------------- /GestureRecognizer/InfiniteView/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/GestureRecognizer/InfiniteView/Info.plist -------------------------------------------------------------------------------- /GestureRecognizer/InfiniteView/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/GestureRecognizer/InfiniteView/ViewController.swift -------------------------------------------------------------------------------- /GestureRecognizer/InfiniteViewTests/InfiniteViewTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/GestureRecognizer/InfiniteViewTests/InfiniteViewTests.swift -------------------------------------------------------------------------------- /GestureRecognizer/InfiniteViewTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/GestureRecognizer/InfiniteViewTests/Info.plist -------------------------------------------------------------------------------- /GestureRecognizer/InfiniteViewUITests/InfiniteViewUITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/GestureRecognizer/InfiniteViewUITests/InfiniteViewUITests.swift -------------------------------------------------------------------------------- /GestureRecognizer/InfiniteViewUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/GestureRecognizer/InfiniteViewUITests/Info.plist -------------------------------------------------------------------------------- /InfiniteView/InfiniteView.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/InfiniteView/InfiniteView.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /InfiniteView/InfiniteView.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/InfiniteView/InfiniteView.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /InfiniteView/InfiniteView.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/InfiniteView/InfiniteView.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /InfiniteView/InfiniteView/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/InfiniteView/InfiniteView/AppDelegate.swift -------------------------------------------------------------------------------- /InfiniteView/InfiniteView/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/InfiniteView/InfiniteView/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /InfiniteView/InfiniteView/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/InfiniteView/InfiniteView/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /InfiniteView/InfiniteView/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/InfiniteView/InfiniteView/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /InfiniteView/InfiniteView/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/InfiniteView/InfiniteView/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /InfiniteView/InfiniteView/DoublyCircularLinkedList.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/InfiniteView/InfiniteView/DoublyCircularLinkedList.swift -------------------------------------------------------------------------------- /InfiniteView/InfiniteView/InfiniteView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/InfiniteView/InfiniteView/InfiniteView.swift -------------------------------------------------------------------------------- /InfiniteView/InfiniteView/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/InfiniteView/InfiniteView/Info.plist -------------------------------------------------------------------------------- /InfiniteView/InfiniteView/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/InfiniteView/InfiniteView/ViewController.swift -------------------------------------------------------------------------------- /InfiniteView/InfiniteViewTests/InfiniteViewTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/InfiniteView/InfiniteViewTests/InfiniteViewTests.swift -------------------------------------------------------------------------------- /InfiniteView/InfiniteViewTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/InfiniteView/InfiniteViewTests/Info.plist -------------------------------------------------------------------------------- /InfiniteView/InfiniteViewUITests/InfiniteViewUITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/InfiniteView/InfiniteViewUITests/InfiniteViewUITests.swift -------------------------------------------------------------------------------- /InfiniteView/InfiniteViewUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/InfiniteView/InfiniteViewUITests/Info.plist -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/LICENSE -------------------------------------------------------------------------------- /NumberCounter/NumberCounter.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/NumberCounter/NumberCounter.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /NumberCounter/NumberCounter.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/NumberCounter/NumberCounter.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /NumberCounter/NumberCounter.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/NumberCounter/NumberCounter.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /NumberCounter/NumberCounter/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/NumberCounter/NumberCounter/AppDelegate.h -------------------------------------------------------------------------------- /NumberCounter/NumberCounter/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/NumberCounter/NumberCounter/AppDelegate.m -------------------------------------------------------------------------------- /NumberCounter/NumberCounter/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/NumberCounter/NumberCounter/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /NumberCounter/NumberCounter/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/NumberCounter/NumberCounter/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /NumberCounter/NumberCounter/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/NumberCounter/NumberCounter/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /NumberCounter/NumberCounter/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/NumberCounter/NumberCounter/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /NumberCounter/NumberCounter/CPNumberCounterView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/NumberCounter/NumberCounter/CPNumberCounterView.h -------------------------------------------------------------------------------- /NumberCounter/NumberCounter/CPNumberCounterView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/NumberCounter/NumberCounter/CPNumberCounterView.m -------------------------------------------------------------------------------- /NumberCounter/NumberCounter/CPQuantityCounterView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/NumberCounter/NumberCounter/CPQuantityCounterView.h -------------------------------------------------------------------------------- /NumberCounter/NumberCounter/CPQuantityCounterView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/NumberCounter/NumberCounter/CPQuantityCounterView.m -------------------------------------------------------------------------------- /NumberCounter/NumberCounter/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/NumberCounter/NumberCounter/Info.plist -------------------------------------------------------------------------------- /NumberCounter/NumberCounter/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/NumberCounter/NumberCounter/ViewController.h -------------------------------------------------------------------------------- /NumberCounter/NumberCounter/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/NumberCounter/NumberCounter/ViewController.m -------------------------------------------------------------------------------- /NumberCounter/NumberCounter/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/NumberCounter/NumberCounter/main.m -------------------------------------------------------------------------------- /NumberCounter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/NumberCounter/README.md -------------------------------------------------------------------------------- /NumberCounter/numbercounterview.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/NumberCounter/numbercounterview.gif -------------------------------------------------------------------------------- /Performance/signposts/LivePhotoPlayground/LivePhotoPlayground.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/Performance/signposts/LivePhotoPlayground/LivePhotoPlayground.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Performance/signposts/LivePhotoPlayground/LivePhotoPlayground.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/Performance/signposts/LivePhotoPlayground/LivePhotoPlayground.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Performance/signposts/LivePhotoPlayground/LivePhotoPlayground/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/Performance/signposts/LivePhotoPlayground/LivePhotoPlayground/AppDelegate.swift -------------------------------------------------------------------------------- /Performance/signposts/LivePhotoPlayground/LivePhotoPlayground/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/Performance/signposts/LivePhotoPlayground/LivePhotoPlayground/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Performance/signposts/LivePhotoPlayground/LivePhotoPlayground/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/Performance/signposts/LivePhotoPlayground/LivePhotoPlayground/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Performance/signposts/LivePhotoPlayground/LivePhotoPlayground/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/Performance/signposts/LivePhotoPlayground/LivePhotoPlayground/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Performance/signposts/LivePhotoPlayground/LivePhotoPlayground/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/Performance/signposts/LivePhotoPlayground/LivePhotoPlayground/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Performance/signposts/LivePhotoPlayground/LivePhotoPlayground/ExUICollectionView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/Performance/signposts/LivePhotoPlayground/LivePhotoPlayground/ExUICollectionView.swift -------------------------------------------------------------------------------- /Performance/signposts/LivePhotoPlayground/LivePhotoPlayground/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/Performance/signposts/LivePhotoPlayground/LivePhotoPlayground/Info.plist -------------------------------------------------------------------------------- /Performance/signposts/LivePhotoPlayground/LivePhotoPlayground/LivePhotoCollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/Performance/signposts/LivePhotoPlayground/LivePhotoPlayground/LivePhotoCollectionViewCell.swift -------------------------------------------------------------------------------- /Performance/signposts/LivePhotoPlayground/LivePhotoPlayground/LivePhotoFetcher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/Performance/signposts/LivePhotoPlayground/LivePhotoPlayground/LivePhotoFetcher.swift -------------------------------------------------------------------------------- /Performance/signposts/LivePhotoPlayground/LivePhotoPlayground/LivePhotoViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/Performance/signposts/LivePhotoPlayground/LivePhotoPlayground/LivePhotoViewController.swift -------------------------------------------------------------------------------- /Performance/signposts/LivePhotoPlayground/LivePhotoPlayground/LivePhotosViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/Performance/signposts/LivePhotoPlayground/LivePhotoPlayground/LivePhotosViewController.swift -------------------------------------------------------------------------------- /Performance/signposts/LivePhotoPlayground/LivePhotoPlaygroundTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/Performance/signposts/LivePhotoPlayground/LivePhotoPlaygroundTests/Info.plist -------------------------------------------------------------------------------- /Performance/signposts/LivePhotoPlayground/LivePhotoPlaygroundTests/LivePhotoPlaygroundTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/Performance/signposts/LivePhotoPlayground/LivePhotoPlaygroundTests/LivePhotoPlaygroundTests.swift -------------------------------------------------------------------------------- /Performance/signposts/livephotoplayground.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/Performance/signposts/livephotoplayground.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Performance/signposts/livephotoplayground.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/Performance/signposts/livephotoplayground.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/README.md -------------------------------------------------------------------------------- /Safe Area/SafeArea.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/Safe Area/SafeArea.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Safe Area/SafeAreaSample/SafeAreaSample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/Safe Area/SafeAreaSample/SafeAreaSample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Safe Area/SafeAreaSample/SafeAreaSample/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/Safe Area/SafeAreaSample/SafeAreaSample/AppDelegate.swift -------------------------------------------------------------------------------- /Safe Area/SafeAreaSample/SafeAreaSample/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/Safe Area/SafeAreaSample/SafeAreaSample/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Safe Area/SafeAreaSample/SafeAreaSample/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/Safe Area/SafeAreaSample/SafeAreaSample/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Safe Area/SafeAreaSample/SafeAreaSample/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/Safe Area/SafeAreaSample/SafeAreaSample/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Safe Area/SafeAreaSample/SafeAreaSample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/Safe Area/SafeAreaSample/SafeAreaSample/Info.plist -------------------------------------------------------------------------------- /Safe Area/SafeAreaSample/SafeAreaSample/NavigationChildViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/Safe Area/SafeAreaSample/SafeAreaSample/NavigationChildViewController.swift -------------------------------------------------------------------------------- /Safe Area/SafeAreaSample/SafeAreaSample/NavigationRootViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/Safe Area/SafeAreaSample/SafeAreaSample/NavigationRootViewController.swift -------------------------------------------------------------------------------- /Safe Area/SafeAreaSample/SafeAreaSample/SafeAreaBorderView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/Safe Area/SafeAreaSample/SafeAreaSample/SafeAreaBorderView.swift -------------------------------------------------------------------------------- /Safe Area/SafeAreaSample/SafeAreaSample/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/Safe Area/SafeAreaSample/SafeAreaSample/ViewController.swift -------------------------------------------------------------------------------- /ScrollView/PinchToZoom/zoom.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/ScrollView/PinchToZoom/zoom.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ScrollView/PinchToZoom/zoom.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/ScrollView/PinchToZoom/zoom.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ScrollView/PinchToZoom/zoom/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/ScrollView/PinchToZoom/zoom/AppDelegate.swift -------------------------------------------------------------------------------- /ScrollView/PinchToZoom/zoom/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/ScrollView/PinchToZoom/zoom/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ScrollView/PinchToZoom/zoom/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/ScrollView/PinchToZoom/zoom/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ScrollView/PinchToZoom/zoom/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/ScrollView/PinchToZoom/zoom/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /ScrollView/PinchToZoom/zoom/DetailViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/ScrollView/PinchToZoom/zoom/DetailViewController.swift -------------------------------------------------------------------------------- /ScrollView/PinchToZoom/zoom/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/ScrollView/PinchToZoom/zoom/Info.plist -------------------------------------------------------------------------------- /ScrollView/PinchToZoom/zoom/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/ScrollView/PinchToZoom/zoom/ViewController.swift -------------------------------------------------------------------------------- /StackView/StackViewInScrollView/AppStore/AppStore.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/StackView/StackViewInScrollView/AppStore/AppStore.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /StackView/StackViewInScrollView/AppStore/AppStore.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/StackView/StackViewInScrollView/AppStore/AppStore.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /StackView/StackViewInScrollView/AppStore/AppStore/AppCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/StackView/StackViewInScrollView/AppStore/AppStore/AppCell.swift -------------------------------------------------------------------------------- /StackView/StackViewInScrollView/AppStore/AppStore/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/StackView/StackViewInScrollView/AppStore/AppStore/AppDelegate.swift -------------------------------------------------------------------------------- /StackView/StackViewInScrollView/AppStore/AppStore/AppDetailInfo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/StackView/StackViewInScrollView/AppStore/AppStore/AppDetailInfo.swift -------------------------------------------------------------------------------- /StackView/StackViewInScrollView/AppStore/AppStore/AppDetailViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/StackView/StackViewInScrollView/AppStore/AppStore/AppDetailViewController.swift -------------------------------------------------------------------------------- /StackView/StackViewInScrollView/AppStore/AppStore/AppInfo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/StackView/StackViewInScrollView/AppStore/AppStore/AppInfo.swift -------------------------------------------------------------------------------- /StackView/StackViewInScrollView/AppStore/AppStore/AppListQueryService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/StackView/StackViewInScrollView/AppStore/AppStore/AppListQueryService.swift -------------------------------------------------------------------------------- /StackView/StackViewInScrollView/AppStore/AppStore/AppListViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/StackView/StackViewInScrollView/AppStore/AppStore/AppListViewController.swift -------------------------------------------------------------------------------- /StackView/StackViewInScrollView/AppStore/AppStore/AppQueryService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/StackView/StackViewInScrollView/AppStore/AppStore/AppQueryService.swift -------------------------------------------------------------------------------- /StackView/StackViewInScrollView/AppStore/AppStore/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/StackView/StackViewInScrollView/AppStore/AppStore/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /StackView/StackViewInScrollView/AppStore/AppStore/AsyncUIImageView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/StackView/StackViewInScrollView/AppStore/AppStore/AsyncUIImageView.swift -------------------------------------------------------------------------------- /StackView/StackViewInScrollView/AppStore/AppStore/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/StackView/StackViewInScrollView/AppStore/AppStore/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /StackView/StackViewInScrollView/AppStore/AppStore/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/StackView/StackViewInScrollView/AppStore/AppStore/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /StackView/StackViewInScrollView/AppStore/AppStore/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/StackView/StackViewInScrollView/AppStore/AppStore/Info.plist -------------------------------------------------------------------------------- /StackView/StackViewInScrollView/AppStore/AppStore/QueryService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/StackView/StackViewInScrollView/AppStore/AppStore/QueryService.swift -------------------------------------------------------------------------------- /StackView/StackViewInScrollView/AppStore/AppStore/ScreenshotCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/StackView/StackViewInScrollView/AppStore/AppStore/ScreenshotCell.swift -------------------------------------------------------------------------------- /StackView/StackViewInScrollView/AppStore/AppStoreTests/AppStoreTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/StackView/StackViewInScrollView/AppStore/AppStoreTests/AppStoreTests.swift -------------------------------------------------------------------------------- /StackView/StackViewInScrollView/AppStore/AppStoreTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/StackView/StackViewInScrollView/AppStore/AppStoreTests/Info.plist -------------------------------------------------------------------------------- /StackView/StackViewInScrollView/StackViewInScrollView.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/StackView/StackViewInScrollView/StackViewInScrollView.md -------------------------------------------------------------------------------- /StackView/StackViewRotation/StackViewRotation.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/StackView/StackViewRotation/StackViewRotation.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /StackView/StackViewRotation/StackViewRotation.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/StackView/StackViewRotation/StackViewRotation.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /StackView/StackViewRotation/StackViewRotation/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/StackView/StackViewRotation/StackViewRotation/AppDelegate.swift -------------------------------------------------------------------------------- /StackView/StackViewRotation/StackViewRotation/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/StackView/StackViewRotation/StackViewRotation/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /StackView/StackViewRotation/StackViewRotation/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/StackView/StackViewRotation/StackViewRotation/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /StackView/StackViewRotation/StackViewRotation/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/StackView/StackViewRotation/StackViewRotation/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /StackView/StackViewRotation/StackViewRotation/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/StackView/StackViewRotation/StackViewRotation/Info.plist -------------------------------------------------------------------------------- /StackView/StackViewRotation/StackViewRotation/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/StackView/StackViewRotation/StackViewRotation/ViewController.swift -------------------------------------------------------------------------------- /TableView/TableviewFixedHeader/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/TableView/TableviewFixedHeader/Readme.md -------------------------------------------------------------------------------- /TableView/TableviewFixedHeader/Tableview.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/TableView/TableviewFixedHeader/Tableview.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /TableView/TableviewFixedHeader/Tableview.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/TableView/TableviewFixedHeader/Tableview.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /TableView/TableviewFixedHeader/Tableview.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/TableView/TableviewFixedHeader/Tableview.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /TableView/TableviewFixedHeader/Tableview/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/TableView/TableviewFixedHeader/Tableview/AppDelegate.swift -------------------------------------------------------------------------------- /TableView/TableviewFixedHeader/Tableview/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/TableView/TableviewFixedHeader/Tableview/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /TableView/TableviewFixedHeader/Tableview/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/TableView/TableviewFixedHeader/Tableview/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /TableView/TableviewFixedHeader/Tableview/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/TableView/TableviewFixedHeader/Tableview/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /TableView/TableviewFixedHeader/Tableview/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/TableView/TableviewFixedHeader/Tableview/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /TableView/TableviewFixedHeader/Tableview/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/TableView/TableviewFixedHeader/Tableview/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /TableView/TableviewFixedHeader/Tableview/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/TableView/TableviewFixedHeader/Tableview/Info.plist -------------------------------------------------------------------------------- /TableView/TableviewFixedHeader/Tableview/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/TableView/TableviewFixedHeader/Tableview/SceneDelegate.swift -------------------------------------------------------------------------------- /TableView/TableviewFixedHeader/Tableview/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/TableView/TableviewFixedHeader/Tableview/ViewController.swift -------------------------------------------------------------------------------- /TableView/TableviewFixedHeader/tableview.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/TableView/TableviewFixedHeader/tableview.gif -------------------------------------------------------------------------------- /ViewController/Rotation/Rotation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/ViewController/Rotation/Rotation.md -------------------------------------------------------------------------------- /ViewController/Rotation/Rotation_appdelegate/Rotation1.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/ViewController/Rotation/Rotation_appdelegate/Rotation1.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ViewController/Rotation/Rotation_appdelegate/Rotation1.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/ViewController/Rotation/Rotation_appdelegate/Rotation1.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ViewController/Rotation/Rotation_appdelegate/Rotation1/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/ViewController/Rotation/Rotation_appdelegate/Rotation1/AppDelegate.swift -------------------------------------------------------------------------------- /ViewController/Rotation/Rotation_appdelegate/Rotation1/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/ViewController/Rotation/Rotation_appdelegate/Rotation1/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ViewController/Rotation/Rotation_appdelegate/Rotation1/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/ViewController/Rotation/Rotation_appdelegate/Rotation1/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ViewController/Rotation/Rotation_appdelegate/Rotation1/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/ViewController/Rotation/Rotation_appdelegate/Rotation1/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /ViewController/Rotation/Rotation_appdelegate/Rotation1/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/ViewController/Rotation/Rotation_appdelegate/Rotation1/Info.plist -------------------------------------------------------------------------------- /ViewController/Rotation/Rotation_appdelegate/Rotation1/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/ViewController/Rotation/Rotation_appdelegate/Rotation1/ViewController.swift -------------------------------------------------------------------------------- /ViewController/Rotation/Rotation_appdelegate_navigation/Rotation1.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/ViewController/Rotation/Rotation_appdelegate_navigation/Rotation1.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ViewController/Rotation/Rotation_appdelegate_navigation/Rotation1.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/ViewController/Rotation/Rotation_appdelegate_navigation/Rotation1.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ViewController/Rotation/Rotation_appdelegate_navigation/Rotation1/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/ViewController/Rotation/Rotation_appdelegate_navigation/Rotation1/AppDelegate.swift -------------------------------------------------------------------------------- /ViewController/Rotation/Rotation_appdelegate_navigation/Rotation1/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/ViewController/Rotation/Rotation_appdelegate_navigation/Rotation1/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ViewController/Rotation/Rotation_appdelegate_navigation/Rotation1/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/ViewController/Rotation/Rotation_appdelegate_navigation/Rotation1/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ViewController/Rotation/Rotation_appdelegate_navigation/Rotation1/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/ViewController/Rotation/Rotation_appdelegate_navigation/Rotation1/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /ViewController/Rotation/Rotation_appdelegate_navigation/Rotation1/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/ViewController/Rotation/Rotation_appdelegate_navigation/Rotation1/Info.plist -------------------------------------------------------------------------------- /ViewController/Rotation/Rotation_appdelegate_navigation/Rotation1/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/ViewController/Rotation/Rotation_appdelegate_navigation/Rotation1/ViewController.swift -------------------------------------------------------------------------------- /ViewController/Rotation/Rotation_infoPlist/Rotation1.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/ViewController/Rotation/Rotation_infoPlist/Rotation1.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ViewController/Rotation/Rotation_infoPlist/Rotation1.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/ViewController/Rotation/Rotation_infoPlist/Rotation1.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ViewController/Rotation/Rotation_infoPlist/Rotation1/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/ViewController/Rotation/Rotation_infoPlist/Rotation1/AppDelegate.swift -------------------------------------------------------------------------------- /ViewController/Rotation/Rotation_infoPlist/Rotation1/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/ViewController/Rotation/Rotation_infoPlist/Rotation1/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ViewController/Rotation/Rotation_infoPlist/Rotation1/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/ViewController/Rotation/Rotation_infoPlist/Rotation1/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ViewController/Rotation/Rotation_infoPlist/Rotation1/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/ViewController/Rotation/Rotation_infoPlist/Rotation1/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /ViewController/Rotation/Rotation_infoPlist/Rotation1/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/ViewController/Rotation/Rotation_infoPlist/Rotation1/Info.plist -------------------------------------------------------------------------------- /ViewController/Rotation/Rotation_infoPlist/Rotation1/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/ViewController/Rotation/Rotation_infoPlist/Rotation1/ViewController.swift -------------------------------------------------------------------------------- /ViewController/Rotation/Rotation_infoPlist_navigation/Rotation1.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/ViewController/Rotation/Rotation_infoPlist_navigation/Rotation1.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ViewController/Rotation/Rotation_infoPlist_navigation/Rotation1.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/ViewController/Rotation/Rotation_infoPlist_navigation/Rotation1.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ViewController/Rotation/Rotation_infoPlist_navigation/Rotation1/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/ViewController/Rotation/Rotation_infoPlist_navigation/Rotation1/AppDelegate.swift -------------------------------------------------------------------------------- /ViewController/Rotation/Rotation_infoPlist_navigation/Rotation1/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/ViewController/Rotation/Rotation_infoPlist_navigation/Rotation1/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ViewController/Rotation/Rotation_infoPlist_navigation/Rotation1/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/ViewController/Rotation/Rotation_infoPlist_navigation/Rotation1/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ViewController/Rotation/Rotation_infoPlist_navigation/Rotation1/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/ViewController/Rotation/Rotation_infoPlist_navigation/Rotation1/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /ViewController/Rotation/Rotation_infoPlist_navigation/Rotation1/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/ViewController/Rotation/Rotation_infoPlist_navigation/Rotation1/Info.plist -------------------------------------------------------------------------------- /ViewController/Rotation/Rotation_infoPlist_navigation/Rotation1/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/ViewController/Rotation/Rotation_infoPlist_navigation/Rotation1/ViewController.swift -------------------------------------------------------------------------------- /ViewController/Rotation/Rotation_navigation/Rotation1.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/ViewController/Rotation/Rotation_navigation/Rotation1.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ViewController/Rotation/Rotation_navigation/Rotation1.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/ViewController/Rotation/Rotation_navigation/Rotation1.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ViewController/Rotation/Rotation_navigation/Rotation1/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/ViewController/Rotation/Rotation_navigation/Rotation1/AppDelegate.swift -------------------------------------------------------------------------------- /ViewController/Rotation/Rotation_navigation/Rotation1/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/ViewController/Rotation/Rotation_navigation/Rotation1/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ViewController/Rotation/Rotation_navigation/Rotation1/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/ViewController/Rotation/Rotation_navigation/Rotation1/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ViewController/Rotation/Rotation_navigation/Rotation1/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/ViewController/Rotation/Rotation_navigation/Rotation1/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /ViewController/Rotation/Rotation_navigation/Rotation1/DetailViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/ViewController/Rotation/Rotation_navigation/Rotation1/DetailViewController.swift -------------------------------------------------------------------------------- /ViewController/Rotation/Rotation_navigation/Rotation1/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/ViewController/Rotation/Rotation_navigation/Rotation1/Info.plist -------------------------------------------------------------------------------- /ViewController/Rotation/Rotation_navigation/Rotation1/MyNavigationController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/ViewController/Rotation/Rotation_navigation/Rotation1/MyNavigationController.swift -------------------------------------------------------------------------------- /ViewController/Rotation/Rotation_navigation/Rotation1/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/ViewController/Rotation/Rotation_navigation/Rotation1/ViewController.swift -------------------------------------------------------------------------------- /ViewController/Rotation/Rotation_navigation_child/Rotation1.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/ViewController/Rotation/Rotation_navigation_child/Rotation1.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ViewController/Rotation/Rotation_navigation_child/Rotation1.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/ViewController/Rotation/Rotation_navigation_child/Rotation1.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ViewController/Rotation/Rotation_navigation_child/Rotation1/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/ViewController/Rotation/Rotation_navigation_child/Rotation1/AppDelegate.swift -------------------------------------------------------------------------------- /ViewController/Rotation/Rotation_navigation_child/Rotation1/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/ViewController/Rotation/Rotation_navigation_child/Rotation1/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ViewController/Rotation/Rotation_navigation_child/Rotation1/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/ViewController/Rotation/Rotation_navigation_child/Rotation1/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ViewController/Rotation/Rotation_navigation_child/Rotation1/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/ViewController/Rotation/Rotation_navigation_child/Rotation1/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /ViewController/Rotation/Rotation_navigation_child/Rotation1/DetailViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/ViewController/Rotation/Rotation_navigation_child/Rotation1/DetailViewController.swift -------------------------------------------------------------------------------- /ViewController/Rotation/Rotation_navigation_child/Rotation1/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/ViewController/Rotation/Rotation_navigation_child/Rotation1/Info.plist -------------------------------------------------------------------------------- /ViewController/Rotation/Rotation_navigation_child/Rotation1/MyNavigationController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/ViewController/Rotation/Rotation_navigation_child/Rotation1/MyNavigationController.swift -------------------------------------------------------------------------------- /ViewController/Rotation/Rotation_navigation_child/Rotation1/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/ViewController/Rotation/Rotation_navigation_child/Rotation1/ViewController.swift -------------------------------------------------------------------------------- /ViewController/Rotation/Rotation_navigation_child_force_landscape/Rotation1.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/ViewController/Rotation/Rotation_navigation_child_force_landscape/Rotation1.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ViewController/Rotation/Rotation_navigation_child_force_landscape/Rotation1.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/ViewController/Rotation/Rotation_navigation_child_force_landscape/Rotation1.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ViewController/Rotation/Rotation_navigation_child_force_landscape/Rotation1/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/ViewController/Rotation/Rotation_navigation_child_force_landscape/Rotation1/AppDelegate.swift -------------------------------------------------------------------------------- /ViewController/Rotation/Rotation_navigation_child_force_landscape/Rotation1/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/ViewController/Rotation/Rotation_navigation_child_force_landscape/Rotation1/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ViewController/Rotation/Rotation_navigation_child_force_landscape/Rotation1/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/ViewController/Rotation/Rotation_navigation_child_force_landscape/Rotation1/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ViewController/Rotation/Rotation_navigation_child_force_landscape/Rotation1/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/ViewController/Rotation/Rotation_navigation_child_force_landscape/Rotation1/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /ViewController/Rotation/Rotation_navigation_child_force_landscape/Rotation1/DetailViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/ViewController/Rotation/Rotation_navigation_child_force_landscape/Rotation1/DetailViewController.swift -------------------------------------------------------------------------------- /ViewController/Rotation/Rotation_navigation_child_force_landscape/Rotation1/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/ViewController/Rotation/Rotation_navigation_child_force_landscape/Rotation1/Info.plist -------------------------------------------------------------------------------- /ViewController/Rotation/Rotation_navigation_child_force_landscape/Rotation1/MyNavigationController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/ViewController/Rotation/Rotation_navigation_child_force_landscape/Rotation1/MyNavigationController.swift -------------------------------------------------------------------------------- /ViewController/Rotation/Rotation_navigation_child_force_landscape/Rotation1/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/ViewController/Rotation/Rotation_navigation_child_force_landscape/Rotation1/ViewController.swift -------------------------------------------------------------------------------- /ViewController/Rotation/Rotation_navigation_portrait_child_only_landscape/Rotation1.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/ViewController/Rotation/Rotation_navigation_portrait_child_only_landscape/Rotation1.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ViewController/Rotation/Rotation_navigation_portrait_child_only_landscape/Rotation1.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/ViewController/Rotation/Rotation_navigation_portrait_child_only_landscape/Rotation1.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ViewController/Rotation/Rotation_navigation_portrait_child_only_landscape/Rotation1/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/ViewController/Rotation/Rotation_navigation_portrait_child_only_landscape/Rotation1/AppDelegate.swift -------------------------------------------------------------------------------- /ViewController/Rotation/Rotation_navigation_portrait_child_only_landscape/Rotation1/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/ViewController/Rotation/Rotation_navigation_portrait_child_only_landscape/Rotation1/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ViewController/Rotation/Rotation_navigation_portrait_child_only_landscape/Rotation1/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/ViewController/Rotation/Rotation_navigation_portrait_child_only_landscape/Rotation1/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ViewController/Rotation/Rotation_navigation_portrait_child_only_landscape/Rotation1/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/ViewController/Rotation/Rotation_navigation_portrait_child_only_landscape/Rotation1/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /ViewController/Rotation/Rotation_navigation_portrait_child_only_landscape/Rotation1/DetailViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/ViewController/Rotation/Rotation_navigation_portrait_child_only_landscape/Rotation1/DetailViewController.swift -------------------------------------------------------------------------------- /ViewController/Rotation/Rotation_navigation_portrait_child_only_landscape/Rotation1/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/ViewController/Rotation/Rotation_navigation_portrait_child_only_landscape/Rotation1/Info.plist -------------------------------------------------------------------------------- /ViewController/Rotation/Rotation_navigation_portrait_child_only_landscape/Rotation1/MyNavigationController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/ViewController/Rotation/Rotation_navigation_portrait_child_only_landscape/Rotation1/MyNavigationController.swift -------------------------------------------------------------------------------- /ViewController/Rotation/Rotation_navigation_portrait_child_only_landscape/Rotation1/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/ViewController/Rotation/Rotation_navigation_portrait_child_only_landscape/Rotation1/ViewController.swift -------------------------------------------------------------------------------- /ViewController/Rotation/Rotation_navigation_portrait_child_only_landscape_2/Rotation1.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/ViewController/Rotation/Rotation_navigation_portrait_child_only_landscape_2/Rotation1.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ViewController/Rotation/Rotation_navigation_portrait_child_only_landscape_2/Rotation1.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/ViewController/Rotation/Rotation_navigation_portrait_child_only_landscape_2/Rotation1.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ViewController/Rotation/Rotation_navigation_portrait_child_only_landscape_2/Rotation1/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/ViewController/Rotation/Rotation_navigation_portrait_child_only_landscape_2/Rotation1/AppDelegate.swift -------------------------------------------------------------------------------- /ViewController/Rotation/Rotation_navigation_portrait_child_only_landscape_2/Rotation1/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/ViewController/Rotation/Rotation_navigation_portrait_child_only_landscape_2/Rotation1/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ViewController/Rotation/Rotation_navigation_portrait_child_only_landscape_2/Rotation1/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/ViewController/Rotation/Rotation_navigation_portrait_child_only_landscape_2/Rotation1/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ViewController/Rotation/Rotation_navigation_portrait_child_only_landscape_2/Rotation1/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/ViewController/Rotation/Rotation_navigation_portrait_child_only_landscape_2/Rotation1/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /ViewController/Rotation/Rotation_navigation_portrait_child_only_landscape_2/Rotation1/DetailViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/ViewController/Rotation/Rotation_navigation_portrait_child_only_landscape_2/Rotation1/DetailViewController.swift -------------------------------------------------------------------------------- /ViewController/Rotation/Rotation_navigation_portrait_child_only_landscape_2/Rotation1/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/ViewController/Rotation/Rotation_navigation_portrait_child_only_landscape_2/Rotation1/Info.plist -------------------------------------------------------------------------------- /ViewController/Rotation/Rotation_navigation_portrait_child_only_landscape_2/Rotation1/MyNavigationController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/ViewController/Rotation/Rotation_navigation_portrait_child_only_landscape_2/Rotation1/MyNavigationController.swift -------------------------------------------------------------------------------- /ViewController/Rotation/Rotation_navigation_portrait_child_only_landscape_2/Rotation1/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/ViewController/Rotation/Rotation_navigation_portrait_child_only_landscape_2/Rotation1/ViewController.swift -------------------------------------------------------------------------------- /ViewController/Transitions/PhotoViewer/LivePhotoPlayground/LivePhotoPlayground.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/ViewController/Transitions/PhotoViewer/LivePhotoPlayground/LivePhotoPlayground.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ViewController/Transitions/PhotoViewer/LivePhotoPlayground/LivePhotoPlayground.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/ViewController/Transitions/PhotoViewer/LivePhotoPlayground/LivePhotoPlayground.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ViewController/Transitions/PhotoViewer/LivePhotoPlayground/LivePhotoPlayground/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/ViewController/Transitions/PhotoViewer/LivePhotoPlayground/LivePhotoPlayground/AppDelegate.swift -------------------------------------------------------------------------------- /ViewController/Transitions/PhotoViewer/LivePhotoPlayground/LivePhotoPlayground/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/ViewController/Transitions/PhotoViewer/LivePhotoPlayground/LivePhotoPlayground/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ViewController/Transitions/PhotoViewer/LivePhotoPlayground/LivePhotoPlayground/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/ViewController/Transitions/PhotoViewer/LivePhotoPlayground/LivePhotoPlayground/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /ViewController/Transitions/PhotoViewer/LivePhotoPlayground/LivePhotoPlayground/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/ViewController/Transitions/PhotoViewer/LivePhotoPlayground/LivePhotoPlayground/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ViewController/Transitions/PhotoViewer/LivePhotoPlayground/LivePhotoPlayground/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/ViewController/Transitions/PhotoViewer/LivePhotoPlayground/LivePhotoPlayground/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /ViewController/Transitions/PhotoViewer/LivePhotoPlayground/LivePhotoPlayground/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/ViewController/Transitions/PhotoViewer/LivePhotoPlayground/LivePhotoPlayground/Info.plist -------------------------------------------------------------------------------- /ViewController/Transitions/PhotoViewer/LivePhotoPlayground/LivePhotoPlayground/LivePhotoCollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/ViewController/Transitions/PhotoViewer/LivePhotoPlayground/LivePhotoPlayground/LivePhotoCollectionViewCell.swift -------------------------------------------------------------------------------- /ViewController/Transitions/PhotoViewer/LivePhotoPlayground/LivePhotoPlayground/LivePhotoViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/ViewController/Transitions/PhotoViewer/LivePhotoPlayground/LivePhotoPlayground/LivePhotoViewController.swift -------------------------------------------------------------------------------- /ViewController/Transitions/PhotoViewer/LivePhotoPlayground/LivePhotoPlayground/LivePhotosViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/ViewController/Transitions/PhotoViewer/LivePhotoPlayground/LivePhotoPlayground/LivePhotosViewController.swift -------------------------------------------------------------------------------- /ViewController/Transitions/PhotoViewer/LivePhotoPlayground/LivePhotoPlayground/PhotoCollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/ViewController/Transitions/PhotoViewer/LivePhotoPlayground/LivePhotoPlayground/PhotoCollectionViewCell.swift -------------------------------------------------------------------------------- /ViewController/Transitions/PhotoViewer/LivePhotoPlayground/LivePhotoPlayground/PhotoFetcher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/ViewController/Transitions/PhotoViewer/LivePhotoPlayground/LivePhotoPlayground/PhotoFetcher.swift -------------------------------------------------------------------------------- /ViewController/Transitions/PhotoViewer/LivePhotoPlayground/LivePhotoPlayground/RevealAnimator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/ViewController/Transitions/PhotoViewer/LivePhotoPlayground/LivePhotoPlayground/RevealAnimator.swift -------------------------------------------------------------------------------- /ViewController/Transitions/PhotoViewer/LivePhotoPlayground/LivePhotoPlayground/ZoomablePhotoView/ZoomablePhotoView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/ViewController/Transitions/PhotoViewer/LivePhotoPlayground/LivePhotoPlayground/ZoomablePhotoView/ZoomablePhotoView.swift -------------------------------------------------------------------------------- /ViewController/Transitions/PhotoViewer/LivePhotoPlayground/LivePhotoPlayground/ZoomablePhotoView/ZoomablePhotoView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/ViewController/Transitions/PhotoViewer/LivePhotoPlayground/LivePhotoPlayground/ZoomablePhotoView/ZoomablePhotoView.xib -------------------------------------------------------------------------------- /ViewController/Transitions/PhotoViewer/LivePhotoPlayground/LivePhotoPlaygroundTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/ViewController/Transitions/PhotoViewer/LivePhotoPlayground/LivePhotoPlaygroundTests/Info.plist -------------------------------------------------------------------------------- /ViewController/Transitions/PhotoViewer/LivePhotoPlayground/LivePhotoPlaygroundTests/LivePhotoPlaygroundTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/ViewController/Transitions/PhotoViewer/LivePhotoPlayground/LivePhotoPlaygroundTests/LivePhotoPlaygroundTests.swift -------------------------------------------------------------------------------- /ViewController/Transitions/PhotoViewer/livephotoplayground.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/ViewController/Transitions/PhotoViewer/livephotoplayground.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ViewController/ViewState/Rotation1.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/ViewController/ViewState/Rotation1.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ViewController/ViewState/Rotation1.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/ViewController/ViewState/Rotation1.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ViewController/ViewState/Rotation1/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/ViewController/ViewState/Rotation1/AppDelegate.swift -------------------------------------------------------------------------------- /ViewController/ViewState/Rotation1/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/ViewController/ViewState/Rotation1/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ViewController/ViewState/Rotation1/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/ViewController/ViewState/Rotation1/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ViewController/ViewState/Rotation1/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/ViewController/ViewState/Rotation1/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /ViewController/ViewState/Rotation1/DetailViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/ViewController/ViewState/Rotation1/DetailViewController.swift -------------------------------------------------------------------------------- /ViewController/ViewState/Rotation1/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/ViewController/ViewState/Rotation1/Info.plist -------------------------------------------------------------------------------- /ViewController/ViewState/Rotation1/MyNavigationController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/ViewController/ViewState/Rotation1/MyNavigationController.swift -------------------------------------------------------------------------------- /ViewController/ViewState/Rotation1/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/ViewController/ViewState/Rotation1/ViewController.swift -------------------------------------------------------------------------------- /ViewController/ViewState/ViewStates.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/ViewController/ViewState/ViewStates.png -------------------------------------------------------------------------------- /ViewController/ViewState/ViewStatesOfNavigationController.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/ViewController/ViewState/ViewStatesOfNavigationController.md -------------------------------------------------------------------------------- /ViewController/ViewState/ViewStatesOfPeekAndPop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongwonwoo/CodeSamples/HEAD/ViewController/ViewState/ViewStatesOfPeekAndPop.md --------------------------------------------------------------------------------