├── .gitignore ├── AutolayoutScrollViewInCode ├── AutolayoutScrollViewInCode.xcodeproj │ └── project.pbxproj ├── AutolayoutScrollViewInCode │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Info.plist │ └── ViewController.swift ├── AutolayoutScrollViewInCodeTests │ ├── AutolayoutScrollViewInCodeTests.swift │ └── Info.plist ├── AutolayoutScrollViewInCodeUITests │ ├── AutolayoutScrollViewInCodeUITests.swift │ └── Info.plist ├── Podfile ├── Podfile.lock ├── Pods │ ├── Manifest.lock │ ├── Pods.xcodeproj │ │ └── project.pbxproj │ ├── SnapKit │ │ ├── LICENSE │ │ ├── README.md │ │ └── Source │ │ │ ├── Constraint.swift │ │ │ ├── ConstraintAttributes.swift │ │ │ ├── ConstraintDescription.swift │ │ │ ├── ConstraintItem.swift │ │ │ ├── ConstraintMaker.swift │ │ │ ├── ConstraintRelation.swift │ │ │ ├── Debugging.swift │ │ │ ├── EdgeInsets.swift │ │ │ ├── LayoutConstraint.swift │ │ │ ├── SnapKit.swift │ │ │ ├── SourceLocation.swift │ │ │ ├── View+SnapKit.swift │ │ │ └── ViewController+SnapKit.swift │ └── Target Support Files │ │ ├── Pods │ │ ├── Info.plist │ │ ├── Pods-acknowledgements.markdown │ │ ├── Pods-acknowledgements.plist │ │ ├── Pods-dummy.m │ │ ├── Pods-frameworks.sh │ │ ├── Pods-resources.sh │ │ ├── Pods-umbrella.h │ │ ├── Pods.debug.xcconfig │ │ ├── Pods.modulemap │ │ └── Pods.release.xcconfig │ │ └── SnapKit │ │ ├── Info.plist │ │ ├── SnapKit-dummy.m │ │ ├── SnapKit-prefix.pch │ │ ├── SnapKit-umbrella.h │ │ ├── SnapKit.modulemap │ │ └── SnapKit.xcconfig └── README.md ├── BATInterview ├── BAT面试指南 PPT.pdf ├── BAT面试指南.pdf └── 张星宇-东北大学-iOS开发.pdf ├── CocoaPodsDemo ├── BSStaticLibraryOne │ ├── BSStaticLibraryOne.xcodeproj │ │ └── project.pbxproj │ ├── BSStaticLibraryOne │ │ ├── BSStaticLibraryOne+Extension.h │ │ ├── BSStaticLibraryOne+Extension.m │ │ ├── BSStaticLibraryOne.h │ │ └── BSStaticLibraryOne.m │ ├── BSStaticLibraryTwo │ │ ├── BSStaticLibraryTwo.h │ │ └── BSStaticLibraryTwo.m │ └── Pod │ │ ├── Pod.h │ │ └── Pod.m ├── OtherLinkerFlag │ ├── OtherLinkerFlag.xcodeproj │ │ └── project.pbxproj │ └── OtherLinkerFlag │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── BSStaticLibraryOne+Extension.h │ │ ├── BSStaticLibraryOne.h │ │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ │ ├── Info.plist │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ └── main.m ├── ShellProject.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ └── ShellProject.xcscmblueprint │ └── xcuserdata │ │ └── zxy.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── ShellProject │ ├── ShellProject.xcodeproj │ └── project.pbxproj │ └── ShellProject │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── ViewController.h │ ├── ViewController.m │ └── main.m ├── CornerRadius ├── CornerRadius.xcodeproj │ └── project.pbxproj ├── CornerRadius │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── Contents.json │ │ └── photo.imageset │ │ │ ├── Contents.json │ │ │ └── photo.png │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── CornerRadius-Bridging-Header.h │ ├── CustomTableViewCell.swift │ ├── Info.plist │ ├── KtCorner.swift │ ├── UIImage+ImageRoundedCorner.h │ ├── UIImage+ImageRoundedCorner.m │ └── ViewController.swift ├── CornerRadiusTests │ ├── CornerRadiusTests.swift │ └── Info.plist ├── CornerRadiusUITests │ ├── CornerRadiusUITests.swift │ └── Info.plist └── README.md ├── CustomTransition ├── CustomTransition-OC │ ├── CustomTransitions.xcodeproj │ │ └── project.pbxproj │ ├── CustomTransitions │ │ ├── AAPLAppDelegate.h │ │ ├── AAPLAppDelegate.m │ │ ├── AAPLExternalStoryboardSegue.h │ │ ├── AAPLExternalStoryboardSegue.m │ │ ├── AAPLMenuViewController.h │ │ ├── AAPLMenuViewController.m │ │ ├── Adaptive Presentation │ │ │ ├── AAPLAdaptivePresentationController.h │ │ │ ├── AAPLAdaptivePresentationController.m │ │ │ ├── AAPLAdaptivePresentationFirstViewController.h │ │ │ ├── AAPLAdaptivePresentationFirstViewController.m │ │ │ ├── AAPLAdaptivePresentationSecondViewController.h │ │ │ ├── AAPLAdaptivePresentationSecondViewController.m │ │ │ ├── AAPLAdaptivePresentationSegue.h │ │ │ ├── AAPLAdaptivePresentationSegue.m │ │ │ └── AdaptivePresentation.storyboard │ │ ├── Base.lproj │ │ │ ├── LaunchScreen.xib │ │ │ └── Main.storyboard │ │ ├── Checkerboard │ │ │ ├── AAPLCheckerboardFirstViewController.h │ │ │ ├── AAPLCheckerboardFirstViewController.m │ │ │ ├── AAPLCheckerboardTransitionAnimator.h │ │ │ ├── AAPLCheckerboardTransitionAnimator.m │ │ │ └── Checkerboard.storyboard │ │ ├── Cross Dissolve │ │ │ ├── AAPLCrossDissolveFirstViewController.h │ │ │ ├── AAPLCrossDissolveFirstViewController.m │ │ │ ├── AAPLCrossDissolveSecondViewController.h │ │ │ ├── AAPLCrossDissolveSecondViewController.m │ │ │ ├── AAPLCrossDissolveTransitionAnimator.h │ │ │ ├── AAPLCrossDissolveTransitionAnimator.m │ │ │ └── CrossDissolve.storyboard │ │ ├── Custom Presentation │ │ │ ├── AAPLCustomPresentationController.h │ │ │ ├── AAPLCustomPresentationController.m │ │ │ ├── AAPLCustomPresentationFirstViewController.h │ │ │ ├── AAPLCustomPresentationFirstViewController.m │ │ │ ├── AAPLCustomPresentationSecondViewController.h │ │ │ ├── AAPLCustomPresentationSecondViewController.m │ │ │ └── CustomPresentation.storyboard │ │ ├── Images.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ ├── CloseButton.imageset │ │ │ │ ├── CloseButton.pdf │ │ │ │ └── Contents.json │ │ │ └── LaunchImage.launchimage │ │ │ │ └── Contents.json │ │ ├── Info.plist │ │ ├── Slide │ │ │ ├── AAPLSlideTransitionAnimator.h │ │ │ ├── AAPLSlideTransitionAnimator.m │ │ │ ├── AAPLSlideTransitionDelegate.h │ │ │ ├── AAPLSlideTransitionDelegate.m │ │ │ ├── AAPLSlideTransitionInteractionController.h │ │ │ ├── AAPLSlideTransitionInteractionController.m │ │ │ └── Slide.storyboard │ │ ├── Swipe │ │ │ ├── AAPLSwipeFirstViewController.h │ │ │ ├── AAPLSwipeFirstViewController.m │ │ │ ├── AAPLSwipeSecondViewController.h │ │ │ ├── AAPLSwipeSecondViewController.m │ │ │ ├── AAPLSwipeTransitionAnimator.h │ │ │ ├── AAPLSwipeTransitionAnimator.m │ │ │ ├── AAPLSwipeTransitionDelegate.h │ │ │ ├── AAPLSwipeTransitionDelegate.m │ │ │ ├── AAPLSwipeTransitionInteractionController.h │ │ │ ├── AAPLSwipeTransitionInteractionController.m │ │ │ └── Swipe.storyboard │ │ └── main.m │ ├── LICENSE.txt │ └── README.md └── CustomTransition-Swift │ ├── CustomTransition-Swift.xcodeproj │ └── project.pbxproj │ ├── CustomTransition-Swift │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Cross Dissolve │ │ ├── CrossDissolveAnimator.swift │ │ ├── CrossDissolveFirstViewController.swift │ │ ├── CrossDissolveSecondViewController.swift │ │ └── HalfWaySpringAnimator.swift │ ├── Custom Presentation │ │ ├── CustomPresentationAnimator.swift │ │ ├── CustomPresentationController.swift │ │ ├── CustomPresentationFirstViewController.swift │ │ └── CustomPresentationSecondViewController.swift │ ├── Info.plist │ ├── Interactivity │ │ ├── InteractivityFirstViewController.swift │ │ ├── InteractivitySecondViewController.swift │ │ ├── InteractivityTransitionAnimator.swift │ │ ├── InteractivityTransitionDelegate.swift │ │ └── TransitionInteractionController.swift │ ├── UIViewShortHand.swift │ └── ViewController.swift │ ├── CustomTransition-SwiftTests │ ├── CustomTransition_SwiftTests.swift │ └── Info.plist │ ├── CustomTransition-SwiftUITests │ ├── CustomTransition_SwiftUITests.swift │ └── Info.plist │ ├── Podfile │ ├── Podfile.lock │ ├── Pods │ ├── Manifest.lock │ ├── Pods.xcodeproj │ │ └── project.pbxproj │ ├── SnapKit │ │ ├── LICENSE │ │ ├── README.md │ │ └── Source │ │ │ ├── Constraint.swift │ │ │ ├── ConstraintAttributes.swift │ │ │ ├── ConstraintDescription.swift │ │ │ ├── ConstraintItem.swift │ │ │ ├── ConstraintMaker.swift │ │ │ ├── ConstraintRelation.swift │ │ │ ├── Debugging.swift │ │ │ ├── EdgeInsets.swift │ │ │ ├── LayoutConstraint.swift │ │ │ ├── SnapKit.swift │ │ │ ├── View+SnapKit.swift │ │ │ └── ViewController+SnapKit.swift │ └── Target Support Files │ │ ├── Pods │ │ ├── Info.plist │ │ ├── Pods-acknowledgements.markdown │ │ ├── Pods-acknowledgements.plist │ │ ├── Pods-dummy.m │ │ ├── Pods-frameworks.sh │ │ ├── Pods-resources.sh │ │ ├── Pods-umbrella.h │ │ ├── Pods.debug.xcconfig │ │ ├── Pods.modulemap │ │ └── Pods.release.xcconfig │ │ └── SnapKit │ │ ├── Info.plist │ │ ├── SnapKit-dummy.m │ │ ├── SnapKit-prefix.pch │ │ ├── SnapKit-umbrella.h │ │ ├── SnapKit.modulemap │ │ └── SnapKit.xcconfig │ └── README.md ├── Effective OC ├── EffectiveObjectiveC │ ├── EffectiveObjectiveC.xcodeproj │ │ └── project.pbxproj │ └── EffectiveObjectiveC │ │ ├── EOCEmployee.h │ │ ├── EOCEmployee.m │ │ ├── EOCEmployeeDesigner.h │ │ ├── EOCEmployeeDesigner.m │ │ ├── EOCEmployeeDeveloper.h │ │ ├── EOCEmployeeDeveloper.m │ │ ├── EOCEmployeeFinance.h │ │ ├── EOCEmployeeFinance.m │ │ ├── EOCErrors.h │ │ ├── EOCErrors.m │ │ ├── EOCPerson.h │ │ ├── EOCPerson.m │ │ ├── EOCSmithPerson.h │ │ ├── EOCSmithPerson.m │ │ ├── Enum.h │ │ ├── Enum.m │ │ ├── HashTest.h │ │ ├── HashTest.m │ │ ├── Literal.h │ │ ├── Literal.m │ │ └── main.m └── 读书总结.md ├── Enum ├── Enum.xcodeproj │ └── project.pbxproj └── Enum │ ├── Enum-Bridging-Header.h │ ├── OCEnum.h │ ├── Tree.swift │ └── main.swift ├── GraphicsPerformance-Starter ├── GraphicsPerformance-Starter.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata ├── GraphicsPerformance-Starter │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ ├── 1.imageset │ │ │ ├── 1.png │ │ │ └── Contents.json │ │ ├── 10.imageset │ │ │ ├── 10.png │ │ │ └── Contents.json │ │ ├── 2.imageset │ │ │ ├── 2.png │ │ │ └── Contents.json │ │ ├── 3.imageset │ │ │ ├── 3.png │ │ │ └── Contents.json │ │ ├── 4.imageset │ │ │ ├── 4.png │ │ │ └── Contents.json │ │ ├── 5.imageset │ │ │ ├── 5.png │ │ │ └── Contents.json │ │ ├── 6.imageset │ │ │ ├── 6.png │ │ │ └── Contents.json │ │ ├── 7.imageset │ │ │ ├── 7.png │ │ │ └── Contents.json │ │ ├── 8.imageset │ │ │ ├── 8.png │ │ │ └── Contents.json │ │ ├── 9.imageset │ │ │ ├── 9.png │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── first.imageset │ │ │ ├── Contents.json │ │ │ └── first.pdf │ │ └── second.imageset │ │ │ ├── Contents.json │ │ │ └── second.pdf │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── CustomTableCell.swift │ ├── FirstViewController.swift │ ├── Info.plist │ └── SecondViewController.swift ├── GraphicsPerformance-StarterTests │ ├── GraphicsPerformance_StarterTests.swift │ └── Info.plist ├── GraphicsPerformance-StarterUITests │ ├── GraphicsPerformance_StarterUITests.swift │ └── Info.plist └── README.md ├── KtColor ├── KTColor.xcodeproj │ └── project.pbxproj ├── KTColor │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Info.plist │ ├── KtColor.swift │ └── ViewController.swift ├── KTColorTests │ ├── Info.plist │ └── KTColorTests.swift ├── KTColorUITests │ ├── Info.plist │ └── KTColorUITests.swift └── README.md ├── KtTableView ├── KtTableView.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata ├── KtTableView.xcworkspace │ └── contents.xcworkspacedata ├── KtTableView │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Info.plist │ ├── KTMainViewController.h │ ├── KTMainViewController.m │ ├── KtBaseModel │ │ ├── KtBaseItem.h │ │ ├── KtBaseItem.m │ │ ├── KtBaseListModel │ │ │ ├── KtBaseListItem.h │ │ │ ├── KtBaseListItem.m │ │ │ ├── KtBaseListModel.h │ │ │ ├── KtBaseListModel.m │ │ │ ├── KtRefreshTableViewController.h │ │ │ └── KtRefreshTableViewController.m │ │ ├── KtBaseModel.h │ │ ├── KtBaseModel.m │ │ ├── KtBaseServerAPI.h │ │ └── KtBaseServerAPI.m │ ├── KtBaseTableView.h │ ├── KtBaseTableView.m │ ├── KtBaseTableViewCell.h │ ├── KtBaseTableViewCell.m │ ├── KtExtension │ │ ├── NSDictionary+KtExtension.h │ │ ├── NSDictionary+KtExtension.m │ │ ├── UIView+KtExtension.h │ │ └── UIView+KtExtension.m │ ├── KtMainTableItem.h │ ├── KtMainTableItem.m │ ├── KtMainTableModel.h │ ├── KtMainTableModel.m │ ├── KtMainTableViewCell.h │ ├── KtMainTableViewCell.m │ ├── KtMainTableViewDataSource.h │ ├── KtMainTableViewDataSource.m │ ├── KtTableViewBaseItem.h │ ├── KtTableViewBaseItem.m │ ├── KtTableViewController.h │ ├── KtTableViewController.m │ ├── KtTableViewDataSource.h │ ├── KtTableViewDataSource.m │ ├── KtTableViewSectionObject.h │ ├── KtTableViewSectionObject.m │ └── main.m ├── KtTableViewTests │ ├── Info.plist │ └── KtTableViewTests.m ├── KtTableViewUITests │ ├── Info.plist │ └── KtTableViewUITests.m ├── Podfile ├── Podfile.lock ├── Pods │ ├── AFNetworking │ │ ├── AFNetworking │ │ │ ├── AFHTTPSessionManager.h │ │ │ ├── AFHTTPSessionManager.m │ │ │ ├── AFNetworkReachabilityManager.h │ │ │ ├── AFNetworkReachabilityManager.m │ │ │ ├── AFNetworking.h │ │ │ ├── AFSecurityPolicy.h │ │ │ ├── AFSecurityPolicy.m │ │ │ ├── AFURLRequestSerialization.h │ │ │ ├── AFURLRequestSerialization.m │ │ │ ├── AFURLResponseSerialization.h │ │ │ ├── AFURLResponseSerialization.m │ │ │ ├── AFURLSessionManager.h │ │ │ └── AFURLSessionManager.m │ │ ├── LICENSE │ │ ├── README.md │ │ └── UIKit+AFNetworking │ │ │ ├── AFAutoPurgingImageCache.h │ │ │ ├── AFAutoPurgingImageCache.m │ │ │ ├── AFImageDownloader.h │ │ │ ├── AFImageDownloader.m │ │ │ ├── AFNetworkActivityIndicatorManager.h │ │ │ ├── AFNetworkActivityIndicatorManager.m │ │ │ ├── UIActivityIndicatorView+AFNetworking.h │ │ │ ├── UIActivityIndicatorView+AFNetworking.m │ │ │ ├── UIButton+AFNetworking.h │ │ │ ├── UIButton+AFNetworking.m │ │ │ ├── UIImage+AFNetworking.h │ │ │ ├── UIImageView+AFNetworking.h │ │ │ ├── UIImageView+AFNetworking.m │ │ │ ├── UIKit+AFNetworking.h │ │ │ ├── UIProgressView+AFNetworking.h │ │ │ ├── UIProgressView+AFNetworking.m │ │ │ ├── UIRefreshControl+AFNetworking.h │ │ │ ├── UIRefreshControl+AFNetworking.m │ │ │ ├── UIWebView+AFNetworking.h │ │ │ └── UIWebView+AFNetworking.m │ ├── Headers │ │ ├── Private │ │ │ ├── AFNetworking │ │ │ │ ├── AFAutoPurgingImageCache.h │ │ │ │ ├── AFHTTPSessionManager.h │ │ │ │ ├── AFImageDownloader.h │ │ │ │ ├── AFNetworkActivityIndicatorManager.h │ │ │ │ ├── AFNetworkReachabilityManager.h │ │ │ │ ├── AFNetworking.h │ │ │ │ ├── AFSecurityPolicy.h │ │ │ │ ├── AFURLRequestSerialization.h │ │ │ │ ├── AFURLResponseSerialization.h │ │ │ │ ├── AFURLSessionManager.h │ │ │ │ ├── UIActivityIndicatorView+AFNetworking.h │ │ │ │ ├── UIButton+AFNetworking.h │ │ │ │ ├── UIImage+AFNetworking.h │ │ │ │ ├── UIImageView+AFNetworking.h │ │ │ │ ├── UIKit+AFNetworking.h │ │ │ │ ├── UIProgressView+AFNetworking.h │ │ │ │ ├── UIRefreshControl+AFNetworking.h │ │ │ │ └── UIWebView+AFNetworking.h │ │ │ └── MJRefresh │ │ │ │ ├── MJRefresh.h │ │ │ │ ├── MJRefreshAutoFooter.h │ │ │ │ ├── MJRefreshAutoGifFooter.h │ │ │ │ ├── MJRefreshAutoNormalFooter.h │ │ │ │ ├── MJRefreshAutoStateFooter.h │ │ │ │ ├── MJRefreshBackFooter.h │ │ │ │ ├── MJRefreshBackGifFooter.h │ │ │ │ ├── MJRefreshBackNormalFooter.h │ │ │ │ ├── MJRefreshBackStateFooter.h │ │ │ │ ├── MJRefreshComponent.h │ │ │ │ ├── MJRefreshConst.h │ │ │ │ ├── MJRefreshFooter.h │ │ │ │ ├── MJRefreshGifHeader.h │ │ │ │ ├── MJRefreshHeader.h │ │ │ │ ├── MJRefreshNormalHeader.h │ │ │ │ ├── MJRefreshStateHeader.h │ │ │ │ ├── UIScrollView+MJExtension.h │ │ │ │ ├── UIScrollView+MJRefresh.h │ │ │ │ └── UIView+MJExtension.h │ │ └── Public │ │ │ ├── AFNetworking │ │ │ ├── AFAutoPurgingImageCache.h │ │ │ ├── AFHTTPSessionManager.h │ │ │ ├── AFImageDownloader.h │ │ │ ├── AFNetworkActivityIndicatorManager.h │ │ │ ├── AFNetworkReachabilityManager.h │ │ │ ├── AFNetworking.h │ │ │ ├── AFSecurityPolicy.h │ │ │ ├── AFURLRequestSerialization.h │ │ │ ├── AFURLResponseSerialization.h │ │ │ ├── AFURLSessionManager.h │ │ │ ├── UIActivityIndicatorView+AFNetworking.h │ │ │ ├── UIButton+AFNetworking.h │ │ │ ├── UIImage+AFNetworking.h │ │ │ ├── UIImageView+AFNetworking.h │ │ │ ├── UIKit+AFNetworking.h │ │ │ ├── UIProgressView+AFNetworking.h │ │ │ ├── UIRefreshControl+AFNetworking.h │ │ │ └── UIWebView+AFNetworking.h │ │ │ └── MJRefresh │ │ │ ├── MJRefresh.h │ │ │ ├── MJRefreshAutoFooter.h │ │ │ ├── MJRefreshAutoGifFooter.h │ │ │ ├── MJRefreshAutoNormalFooter.h │ │ │ ├── MJRefreshAutoStateFooter.h │ │ │ ├── MJRefreshBackFooter.h │ │ │ ├── MJRefreshBackGifFooter.h │ │ │ ├── MJRefreshBackNormalFooter.h │ │ │ ├── MJRefreshBackStateFooter.h │ │ │ ├── MJRefreshComponent.h │ │ │ ├── MJRefreshConst.h │ │ │ ├── MJRefreshFooter.h │ │ │ ├── MJRefreshGifHeader.h │ │ │ ├── MJRefreshHeader.h │ │ │ ├── MJRefreshNormalHeader.h │ │ │ ├── MJRefreshStateHeader.h │ │ │ ├── UIScrollView+MJExtension.h │ │ │ ├── UIScrollView+MJRefresh.h │ │ │ └── UIView+MJExtension.h │ ├── MJRefresh │ │ ├── LICENSE │ │ ├── MJRefresh │ │ │ ├── Base │ │ │ │ ├── MJRefreshAutoFooter.h │ │ │ │ ├── MJRefreshAutoFooter.m │ │ │ │ ├── MJRefreshBackFooter.h │ │ │ │ ├── MJRefreshBackFooter.m │ │ │ │ ├── MJRefreshComponent.h │ │ │ │ ├── MJRefreshComponent.m │ │ │ │ ├── MJRefreshFooter.h │ │ │ │ ├── MJRefreshFooter.m │ │ │ │ ├── MJRefreshHeader.h │ │ │ │ └── MJRefreshHeader.m │ │ │ ├── Custom │ │ │ │ ├── Footer │ │ │ │ │ ├── Auto │ │ │ │ │ │ ├── MJRefreshAutoGifFooter.h │ │ │ │ │ │ ├── MJRefreshAutoGifFooter.m │ │ │ │ │ │ ├── MJRefreshAutoNormalFooter.h │ │ │ │ │ │ ├── MJRefreshAutoNormalFooter.m │ │ │ │ │ │ ├── MJRefreshAutoStateFooter.h │ │ │ │ │ │ └── MJRefreshAutoStateFooter.m │ │ │ │ │ └── Back │ │ │ │ │ │ ├── MJRefreshBackGifFooter.h │ │ │ │ │ │ ├── MJRefreshBackGifFooter.m │ │ │ │ │ │ ├── MJRefreshBackNormalFooter.h │ │ │ │ │ │ ├── MJRefreshBackNormalFooter.m │ │ │ │ │ │ ├── MJRefreshBackStateFooter.h │ │ │ │ │ │ └── MJRefreshBackStateFooter.m │ │ │ │ └── Header │ │ │ │ │ ├── MJRefreshGifHeader.h │ │ │ │ │ ├── MJRefreshGifHeader.m │ │ │ │ │ ├── MJRefreshNormalHeader.h │ │ │ │ │ ├── MJRefreshNormalHeader.m │ │ │ │ │ ├── MJRefreshStateHeader.h │ │ │ │ │ └── MJRefreshStateHeader.m │ │ │ ├── MJRefresh.bundle │ │ │ │ └── arrow@2x.png │ │ │ ├── MJRefresh.h │ │ │ ├── MJRefreshConst.h │ │ │ ├── MJRefreshConst.m │ │ │ ├── UIScrollView+MJExtension.h │ │ │ ├── UIScrollView+MJExtension.m │ │ │ ├── UIScrollView+MJRefresh.h │ │ │ ├── UIScrollView+MJRefresh.m │ │ │ ├── UIView+MJExtension.h │ │ │ └── UIView+MJExtension.m │ │ └── README.md │ ├── Manifest.lock │ ├── Pods.xcodeproj │ │ └── project.pbxproj │ └── Target Support Files │ │ ├── AFNetworking │ │ ├── AFNetworking-dummy.m │ │ ├── AFNetworking-prefix.pch │ │ └── AFNetworking.xcconfig │ │ ├── MJRefresh │ │ ├── MJRefresh-dummy.m │ │ ├── MJRefresh-prefix.pch │ │ └── MJRefresh.xcconfig │ │ └── Pods │ │ ├── Pods-acknowledgements.markdown │ │ ├── Pods-acknowledgements.plist │ │ ├── Pods-dummy.m │ │ ├── Pods-frameworks.sh │ │ ├── Pods-resources.sh │ │ ├── Pods.debug.xcconfig │ │ └── Pods.release.xcconfig └── README.md ├── NodeRequireTest ├── .vscode │ └── launch.json ├── README.md ├── jsconfig.json ├── main │ └── index.js ├── package.json └── utils │ └── utils.js ├── ParallelMap ├── ParallelMap.xcodeproj │ └── project.pbxproj ├── ParallelMap │ ├── extension.swift │ ├── main.swift │ └── test.swift └── README.md ├── README.md ├── RunloopAndThread ├── RunloopAndThread.xcodeproj │ └── project.pbxproj └── RunloopAndThread │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── NSObject+DeallocBlock.h │ ├── NSObject+DeallocBlock.m │ ├── ViewController.h │ ├── ViewController.m │ └── main.m ├── Streamable ├── Streamable.xcodeproj │ └── project.pbxproj └── Streamable │ ├── Debug.swift │ ├── Print.swift │ └── main.swift ├── SwiftMysterious ├── README.md ├── SwiftMysterious.xcodeproj │ └── project.pbxproj └── SwiftMysterious │ ├── InlineLazy.swift │ ├── LoopLabel.swift │ ├── SpecialLiteral.swift │ └── main.swift ├── SwiftTips ├── README.md ├── SwiftTips.xcodeproj │ └── project.pbxproj └── SwiftTips │ ├── Breakpoint.swift │ ├── PrivateSet.swift │ ├── ReuseIdentifier.swift │ ├── Semicolon.swift │ └── main.swift ├── load ├── README.md ├── load.xcodeproj │ └── project.pbxproj └── load │ ├── Child+load.h │ ├── Child+load.m │ ├── Child.h │ ├── Child.m │ ├── Other.h │ ├── Other.m │ ├── Parent.h │ ├── Parent.m │ └── main.m └── runtime ├── README.md ├── runtime.xcodeproj └── project.pbxproj └── runtime ├── MethodForwardTest.h ├── MethodForwardTest.m ├── MethodSwizzlingTest.h ├── MethodSwizzlingTest.m ├── NSString+MyImplementation.h ├── NSString+MyImplementation.m ├── Replacement.h ├── Replacement.m └── main.m /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/.gitignore -------------------------------------------------------------------------------- /AutolayoutScrollViewInCode/AutolayoutScrollViewInCode.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/AutolayoutScrollViewInCode/AutolayoutScrollViewInCode.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /AutolayoutScrollViewInCode/AutolayoutScrollViewInCode/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/AutolayoutScrollViewInCode/AutolayoutScrollViewInCode/AppDelegate.swift -------------------------------------------------------------------------------- /AutolayoutScrollViewInCode/AutolayoutScrollViewInCode/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/AutolayoutScrollViewInCode/AutolayoutScrollViewInCode/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /AutolayoutScrollViewInCode/AutolayoutScrollViewInCode/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/AutolayoutScrollViewInCode/AutolayoutScrollViewInCode/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /AutolayoutScrollViewInCode/AutolayoutScrollViewInCode/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/AutolayoutScrollViewInCode/AutolayoutScrollViewInCode/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /AutolayoutScrollViewInCode/AutolayoutScrollViewInCode/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/AutolayoutScrollViewInCode/AutolayoutScrollViewInCode/Info.plist -------------------------------------------------------------------------------- /AutolayoutScrollViewInCode/AutolayoutScrollViewInCode/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/AutolayoutScrollViewInCode/AutolayoutScrollViewInCode/ViewController.swift -------------------------------------------------------------------------------- /AutolayoutScrollViewInCode/AutolayoutScrollViewInCodeTests/AutolayoutScrollViewInCodeTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/AutolayoutScrollViewInCode/AutolayoutScrollViewInCodeTests/AutolayoutScrollViewInCodeTests.swift -------------------------------------------------------------------------------- /AutolayoutScrollViewInCode/AutolayoutScrollViewInCodeTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/AutolayoutScrollViewInCode/AutolayoutScrollViewInCodeTests/Info.plist -------------------------------------------------------------------------------- /AutolayoutScrollViewInCode/AutolayoutScrollViewInCodeUITests/AutolayoutScrollViewInCodeUITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/AutolayoutScrollViewInCode/AutolayoutScrollViewInCodeUITests/AutolayoutScrollViewInCodeUITests.swift -------------------------------------------------------------------------------- /AutolayoutScrollViewInCode/AutolayoutScrollViewInCodeUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/AutolayoutScrollViewInCode/AutolayoutScrollViewInCodeUITests/Info.plist -------------------------------------------------------------------------------- /AutolayoutScrollViewInCode/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/AutolayoutScrollViewInCode/Podfile -------------------------------------------------------------------------------- /AutolayoutScrollViewInCode/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/AutolayoutScrollViewInCode/Podfile.lock -------------------------------------------------------------------------------- /AutolayoutScrollViewInCode/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/AutolayoutScrollViewInCode/Pods/Manifest.lock -------------------------------------------------------------------------------- /AutolayoutScrollViewInCode/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/AutolayoutScrollViewInCode/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /AutolayoutScrollViewInCode/Pods/SnapKit/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/AutolayoutScrollViewInCode/Pods/SnapKit/LICENSE -------------------------------------------------------------------------------- /AutolayoutScrollViewInCode/Pods/SnapKit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/AutolayoutScrollViewInCode/Pods/SnapKit/README.md -------------------------------------------------------------------------------- /AutolayoutScrollViewInCode/Pods/SnapKit/Source/Constraint.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/AutolayoutScrollViewInCode/Pods/SnapKit/Source/Constraint.swift -------------------------------------------------------------------------------- /AutolayoutScrollViewInCode/Pods/SnapKit/Source/ConstraintAttributes.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/AutolayoutScrollViewInCode/Pods/SnapKit/Source/ConstraintAttributes.swift -------------------------------------------------------------------------------- /AutolayoutScrollViewInCode/Pods/SnapKit/Source/ConstraintDescription.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/AutolayoutScrollViewInCode/Pods/SnapKit/Source/ConstraintDescription.swift -------------------------------------------------------------------------------- /AutolayoutScrollViewInCode/Pods/SnapKit/Source/ConstraintItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/AutolayoutScrollViewInCode/Pods/SnapKit/Source/ConstraintItem.swift -------------------------------------------------------------------------------- /AutolayoutScrollViewInCode/Pods/SnapKit/Source/ConstraintMaker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/AutolayoutScrollViewInCode/Pods/SnapKit/Source/ConstraintMaker.swift -------------------------------------------------------------------------------- /AutolayoutScrollViewInCode/Pods/SnapKit/Source/ConstraintRelation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/AutolayoutScrollViewInCode/Pods/SnapKit/Source/ConstraintRelation.swift -------------------------------------------------------------------------------- /AutolayoutScrollViewInCode/Pods/SnapKit/Source/Debugging.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/AutolayoutScrollViewInCode/Pods/SnapKit/Source/Debugging.swift -------------------------------------------------------------------------------- /AutolayoutScrollViewInCode/Pods/SnapKit/Source/EdgeInsets.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/AutolayoutScrollViewInCode/Pods/SnapKit/Source/EdgeInsets.swift -------------------------------------------------------------------------------- /AutolayoutScrollViewInCode/Pods/SnapKit/Source/LayoutConstraint.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/AutolayoutScrollViewInCode/Pods/SnapKit/Source/LayoutConstraint.swift -------------------------------------------------------------------------------- /AutolayoutScrollViewInCode/Pods/SnapKit/Source/SnapKit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/AutolayoutScrollViewInCode/Pods/SnapKit/Source/SnapKit.swift -------------------------------------------------------------------------------- /AutolayoutScrollViewInCode/Pods/SnapKit/Source/SourceLocation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/AutolayoutScrollViewInCode/Pods/SnapKit/Source/SourceLocation.swift -------------------------------------------------------------------------------- /AutolayoutScrollViewInCode/Pods/SnapKit/Source/View+SnapKit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/AutolayoutScrollViewInCode/Pods/SnapKit/Source/View+SnapKit.swift -------------------------------------------------------------------------------- /AutolayoutScrollViewInCode/Pods/SnapKit/Source/ViewController+SnapKit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/AutolayoutScrollViewInCode/Pods/SnapKit/Source/ViewController+SnapKit.swift -------------------------------------------------------------------------------- /AutolayoutScrollViewInCode/Pods/Target Support Files/Pods/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/AutolayoutScrollViewInCode/Pods/Target Support Files/Pods/Info.plist -------------------------------------------------------------------------------- /AutolayoutScrollViewInCode/Pods/Target Support Files/Pods/Pods-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/AutolayoutScrollViewInCode/Pods/Target Support Files/Pods/Pods-acknowledgements.markdown -------------------------------------------------------------------------------- /AutolayoutScrollViewInCode/Pods/Target Support Files/Pods/Pods-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/AutolayoutScrollViewInCode/Pods/Target Support Files/Pods/Pods-acknowledgements.plist -------------------------------------------------------------------------------- /AutolayoutScrollViewInCode/Pods/Target Support Files/Pods/Pods-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/AutolayoutScrollViewInCode/Pods/Target Support Files/Pods/Pods-dummy.m -------------------------------------------------------------------------------- /AutolayoutScrollViewInCode/Pods/Target Support Files/Pods/Pods-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/AutolayoutScrollViewInCode/Pods/Target Support Files/Pods/Pods-frameworks.sh -------------------------------------------------------------------------------- /AutolayoutScrollViewInCode/Pods/Target Support Files/Pods/Pods-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/AutolayoutScrollViewInCode/Pods/Target Support Files/Pods/Pods-resources.sh -------------------------------------------------------------------------------- /AutolayoutScrollViewInCode/Pods/Target Support Files/Pods/Pods-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/AutolayoutScrollViewInCode/Pods/Target Support Files/Pods/Pods-umbrella.h -------------------------------------------------------------------------------- /AutolayoutScrollViewInCode/Pods/Target Support Files/Pods/Pods.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/AutolayoutScrollViewInCode/Pods/Target Support Files/Pods/Pods.debug.xcconfig -------------------------------------------------------------------------------- /AutolayoutScrollViewInCode/Pods/Target Support Files/Pods/Pods.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/AutolayoutScrollViewInCode/Pods/Target Support Files/Pods/Pods.modulemap -------------------------------------------------------------------------------- /AutolayoutScrollViewInCode/Pods/Target Support Files/Pods/Pods.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/AutolayoutScrollViewInCode/Pods/Target Support Files/Pods/Pods.release.xcconfig -------------------------------------------------------------------------------- /AutolayoutScrollViewInCode/Pods/Target Support Files/SnapKit/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/AutolayoutScrollViewInCode/Pods/Target Support Files/SnapKit/Info.plist -------------------------------------------------------------------------------- /AutolayoutScrollViewInCode/Pods/Target Support Files/SnapKit/SnapKit-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/AutolayoutScrollViewInCode/Pods/Target Support Files/SnapKit/SnapKit-dummy.m -------------------------------------------------------------------------------- /AutolayoutScrollViewInCode/Pods/Target Support Files/SnapKit/SnapKit-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/AutolayoutScrollViewInCode/Pods/Target Support Files/SnapKit/SnapKit-prefix.pch -------------------------------------------------------------------------------- /AutolayoutScrollViewInCode/Pods/Target Support Files/SnapKit/SnapKit-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/AutolayoutScrollViewInCode/Pods/Target Support Files/SnapKit/SnapKit-umbrella.h -------------------------------------------------------------------------------- /AutolayoutScrollViewInCode/Pods/Target Support Files/SnapKit/SnapKit.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/AutolayoutScrollViewInCode/Pods/Target Support Files/SnapKit/SnapKit.modulemap -------------------------------------------------------------------------------- /AutolayoutScrollViewInCode/Pods/Target Support Files/SnapKit/SnapKit.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/AutolayoutScrollViewInCode/Pods/Target Support Files/SnapKit/SnapKit.xcconfig -------------------------------------------------------------------------------- /AutolayoutScrollViewInCode/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/AutolayoutScrollViewInCode/README.md -------------------------------------------------------------------------------- /BATInterview/BAT面试指南 PPT.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/BATInterview/BAT面试指南 PPT.pdf -------------------------------------------------------------------------------- /BATInterview/BAT面试指南.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/BATInterview/BAT面试指南.pdf -------------------------------------------------------------------------------- /BATInterview/张星宇-东北大学-iOS开发.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/BATInterview/张星宇-东北大学-iOS开发.pdf -------------------------------------------------------------------------------- /CocoaPodsDemo/BSStaticLibraryOne/BSStaticLibraryOne.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CocoaPodsDemo/BSStaticLibraryOne/BSStaticLibraryOne.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /CocoaPodsDemo/BSStaticLibraryOne/BSStaticLibraryOne/BSStaticLibraryOne+Extension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CocoaPodsDemo/BSStaticLibraryOne/BSStaticLibraryOne/BSStaticLibraryOne+Extension.h -------------------------------------------------------------------------------- /CocoaPodsDemo/BSStaticLibraryOne/BSStaticLibraryOne/BSStaticLibraryOne+Extension.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CocoaPodsDemo/BSStaticLibraryOne/BSStaticLibraryOne/BSStaticLibraryOne+Extension.m -------------------------------------------------------------------------------- /CocoaPodsDemo/BSStaticLibraryOne/BSStaticLibraryOne/BSStaticLibraryOne.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CocoaPodsDemo/BSStaticLibraryOne/BSStaticLibraryOne/BSStaticLibraryOne.h -------------------------------------------------------------------------------- /CocoaPodsDemo/BSStaticLibraryOne/BSStaticLibraryOne/BSStaticLibraryOne.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CocoaPodsDemo/BSStaticLibraryOne/BSStaticLibraryOne/BSStaticLibraryOne.m -------------------------------------------------------------------------------- /CocoaPodsDemo/BSStaticLibraryOne/BSStaticLibraryTwo/BSStaticLibraryTwo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CocoaPodsDemo/BSStaticLibraryOne/BSStaticLibraryTwo/BSStaticLibraryTwo.h -------------------------------------------------------------------------------- /CocoaPodsDemo/BSStaticLibraryOne/BSStaticLibraryTwo/BSStaticLibraryTwo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CocoaPodsDemo/BSStaticLibraryOne/BSStaticLibraryTwo/BSStaticLibraryTwo.m -------------------------------------------------------------------------------- /CocoaPodsDemo/BSStaticLibraryOne/Pod/Pod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CocoaPodsDemo/BSStaticLibraryOne/Pod/Pod.h -------------------------------------------------------------------------------- /CocoaPodsDemo/BSStaticLibraryOne/Pod/Pod.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CocoaPodsDemo/BSStaticLibraryOne/Pod/Pod.m -------------------------------------------------------------------------------- /CocoaPodsDemo/OtherLinkerFlag/OtherLinkerFlag.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CocoaPodsDemo/OtherLinkerFlag/OtherLinkerFlag.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /CocoaPodsDemo/OtherLinkerFlag/OtherLinkerFlag/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CocoaPodsDemo/OtherLinkerFlag/OtherLinkerFlag/AppDelegate.h -------------------------------------------------------------------------------- /CocoaPodsDemo/OtherLinkerFlag/OtherLinkerFlag/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CocoaPodsDemo/OtherLinkerFlag/OtherLinkerFlag/AppDelegate.m -------------------------------------------------------------------------------- /CocoaPodsDemo/OtherLinkerFlag/OtherLinkerFlag/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CocoaPodsDemo/OtherLinkerFlag/OtherLinkerFlag/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /CocoaPodsDemo/OtherLinkerFlag/OtherLinkerFlag/BSStaticLibraryOne+Extension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CocoaPodsDemo/OtherLinkerFlag/OtherLinkerFlag/BSStaticLibraryOne+Extension.h -------------------------------------------------------------------------------- /CocoaPodsDemo/OtherLinkerFlag/OtherLinkerFlag/BSStaticLibraryOne.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CocoaPodsDemo/OtherLinkerFlag/OtherLinkerFlag/BSStaticLibraryOne.h -------------------------------------------------------------------------------- /CocoaPodsDemo/OtherLinkerFlag/OtherLinkerFlag/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CocoaPodsDemo/OtherLinkerFlag/OtherLinkerFlag/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /CocoaPodsDemo/OtherLinkerFlag/OtherLinkerFlag/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CocoaPodsDemo/OtherLinkerFlag/OtherLinkerFlag/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /CocoaPodsDemo/OtherLinkerFlag/OtherLinkerFlag/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CocoaPodsDemo/OtherLinkerFlag/OtherLinkerFlag/Info.plist -------------------------------------------------------------------------------- /CocoaPodsDemo/OtherLinkerFlag/OtherLinkerFlag/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CocoaPodsDemo/OtherLinkerFlag/OtherLinkerFlag/ViewController.h -------------------------------------------------------------------------------- /CocoaPodsDemo/OtherLinkerFlag/OtherLinkerFlag/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CocoaPodsDemo/OtherLinkerFlag/OtherLinkerFlag/ViewController.m -------------------------------------------------------------------------------- /CocoaPodsDemo/OtherLinkerFlag/OtherLinkerFlag/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CocoaPodsDemo/OtherLinkerFlag/OtherLinkerFlag/main.m -------------------------------------------------------------------------------- /CocoaPodsDemo/ShellProject.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CocoaPodsDemo/ShellProject.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /CocoaPodsDemo/ShellProject.xcworkspace/xcshareddata/ShellProject.xcscmblueprint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CocoaPodsDemo/ShellProject.xcworkspace/xcshareddata/ShellProject.xcscmblueprint -------------------------------------------------------------------------------- /CocoaPodsDemo/ShellProject.xcworkspace/xcuserdata/zxy.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CocoaPodsDemo/ShellProject.xcworkspace/xcuserdata/zxy.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /CocoaPodsDemo/ShellProject/ShellProject.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CocoaPodsDemo/ShellProject/ShellProject.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /CocoaPodsDemo/ShellProject/ShellProject/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CocoaPodsDemo/ShellProject/ShellProject/AppDelegate.h -------------------------------------------------------------------------------- /CocoaPodsDemo/ShellProject/ShellProject/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CocoaPodsDemo/ShellProject/ShellProject/AppDelegate.m -------------------------------------------------------------------------------- /CocoaPodsDemo/ShellProject/ShellProject/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CocoaPodsDemo/ShellProject/ShellProject/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /CocoaPodsDemo/ShellProject/ShellProject/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CocoaPodsDemo/ShellProject/ShellProject/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /CocoaPodsDemo/ShellProject/ShellProject/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CocoaPodsDemo/ShellProject/ShellProject/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /CocoaPodsDemo/ShellProject/ShellProject/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CocoaPodsDemo/ShellProject/ShellProject/Info.plist -------------------------------------------------------------------------------- /CocoaPodsDemo/ShellProject/ShellProject/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CocoaPodsDemo/ShellProject/ShellProject/ViewController.h -------------------------------------------------------------------------------- /CocoaPodsDemo/ShellProject/ShellProject/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CocoaPodsDemo/ShellProject/ShellProject/ViewController.m -------------------------------------------------------------------------------- /CocoaPodsDemo/ShellProject/ShellProject/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CocoaPodsDemo/ShellProject/ShellProject/main.m -------------------------------------------------------------------------------- /CornerRadius/CornerRadius.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CornerRadius/CornerRadius.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /CornerRadius/CornerRadius/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CornerRadius/CornerRadius/AppDelegate.swift -------------------------------------------------------------------------------- /CornerRadius/CornerRadius/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CornerRadius/CornerRadius/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /CornerRadius/CornerRadius/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CornerRadius/CornerRadius/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /CornerRadius/CornerRadius/Assets.xcassets/photo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CornerRadius/CornerRadius/Assets.xcassets/photo.imageset/Contents.json -------------------------------------------------------------------------------- /CornerRadius/CornerRadius/Assets.xcassets/photo.imageset/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CornerRadius/CornerRadius/Assets.xcassets/photo.imageset/photo.png -------------------------------------------------------------------------------- /CornerRadius/CornerRadius/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CornerRadius/CornerRadius/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /CornerRadius/CornerRadius/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CornerRadius/CornerRadius/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /CornerRadius/CornerRadius/CornerRadius-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CornerRadius/CornerRadius/CornerRadius-Bridging-Header.h -------------------------------------------------------------------------------- /CornerRadius/CornerRadius/CustomTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CornerRadius/CornerRadius/CustomTableViewCell.swift -------------------------------------------------------------------------------- /CornerRadius/CornerRadius/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CornerRadius/CornerRadius/Info.plist -------------------------------------------------------------------------------- /CornerRadius/CornerRadius/KtCorner.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CornerRadius/CornerRadius/KtCorner.swift -------------------------------------------------------------------------------- /CornerRadius/CornerRadius/UIImage+ImageRoundedCorner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CornerRadius/CornerRadius/UIImage+ImageRoundedCorner.h -------------------------------------------------------------------------------- /CornerRadius/CornerRadius/UIImage+ImageRoundedCorner.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CornerRadius/CornerRadius/UIImage+ImageRoundedCorner.m -------------------------------------------------------------------------------- /CornerRadius/CornerRadius/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CornerRadius/CornerRadius/ViewController.swift -------------------------------------------------------------------------------- /CornerRadius/CornerRadiusTests/CornerRadiusTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CornerRadius/CornerRadiusTests/CornerRadiusTests.swift -------------------------------------------------------------------------------- /CornerRadius/CornerRadiusTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CornerRadius/CornerRadiusTests/Info.plist -------------------------------------------------------------------------------- /CornerRadius/CornerRadiusUITests/CornerRadiusUITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CornerRadius/CornerRadiusUITests/CornerRadiusUITests.swift -------------------------------------------------------------------------------- /CornerRadius/CornerRadiusUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CornerRadius/CornerRadiusUITests/Info.plist -------------------------------------------------------------------------------- /CornerRadius/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CornerRadius/README.md -------------------------------------------------------------------------------- /CustomTransition/CustomTransition-OC/CustomTransitions.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CustomTransition/CustomTransition-OC/CustomTransitions.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /CustomTransition/CustomTransition-OC/CustomTransitions/AAPLAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CustomTransition/CustomTransition-OC/CustomTransitions/AAPLAppDelegate.h -------------------------------------------------------------------------------- /CustomTransition/CustomTransition-OC/CustomTransitions/AAPLAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CustomTransition/CustomTransition-OC/CustomTransitions/AAPLAppDelegate.m -------------------------------------------------------------------------------- /CustomTransition/CustomTransition-OC/CustomTransitions/AAPLExternalStoryboardSegue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CustomTransition/CustomTransition-OC/CustomTransitions/AAPLExternalStoryboardSegue.h -------------------------------------------------------------------------------- /CustomTransition/CustomTransition-OC/CustomTransitions/AAPLExternalStoryboardSegue.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CustomTransition/CustomTransition-OC/CustomTransitions/AAPLExternalStoryboardSegue.m -------------------------------------------------------------------------------- /CustomTransition/CustomTransition-OC/CustomTransitions/AAPLMenuViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CustomTransition/CustomTransition-OC/CustomTransitions/AAPLMenuViewController.h -------------------------------------------------------------------------------- /CustomTransition/CustomTransition-OC/CustomTransitions/AAPLMenuViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CustomTransition/CustomTransition-OC/CustomTransitions/AAPLMenuViewController.m -------------------------------------------------------------------------------- /CustomTransition/CustomTransition-OC/CustomTransitions/Adaptive Presentation/AAPLAdaptivePresentationController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CustomTransition/CustomTransition-OC/CustomTransitions/Adaptive Presentation/AAPLAdaptivePresentationController.h -------------------------------------------------------------------------------- /CustomTransition/CustomTransition-OC/CustomTransitions/Adaptive Presentation/AAPLAdaptivePresentationController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CustomTransition/CustomTransition-OC/CustomTransitions/Adaptive Presentation/AAPLAdaptivePresentationController.m -------------------------------------------------------------------------------- /CustomTransition/CustomTransition-OC/CustomTransitions/Adaptive Presentation/AAPLAdaptivePresentationFirstViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CustomTransition/CustomTransition-OC/CustomTransitions/Adaptive Presentation/AAPLAdaptivePresentationFirstViewController.h -------------------------------------------------------------------------------- /CustomTransition/CustomTransition-OC/CustomTransitions/Adaptive Presentation/AAPLAdaptivePresentationFirstViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CustomTransition/CustomTransition-OC/CustomTransitions/Adaptive Presentation/AAPLAdaptivePresentationFirstViewController.m -------------------------------------------------------------------------------- /CustomTransition/CustomTransition-OC/CustomTransitions/Adaptive Presentation/AAPLAdaptivePresentationSecondViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CustomTransition/CustomTransition-OC/CustomTransitions/Adaptive Presentation/AAPLAdaptivePresentationSecondViewController.h -------------------------------------------------------------------------------- /CustomTransition/CustomTransition-OC/CustomTransitions/Adaptive Presentation/AAPLAdaptivePresentationSecondViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CustomTransition/CustomTransition-OC/CustomTransitions/Adaptive Presentation/AAPLAdaptivePresentationSecondViewController.m -------------------------------------------------------------------------------- /CustomTransition/CustomTransition-OC/CustomTransitions/Adaptive Presentation/AAPLAdaptivePresentationSegue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CustomTransition/CustomTransition-OC/CustomTransitions/Adaptive Presentation/AAPLAdaptivePresentationSegue.h -------------------------------------------------------------------------------- /CustomTransition/CustomTransition-OC/CustomTransitions/Adaptive Presentation/AAPLAdaptivePresentationSegue.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CustomTransition/CustomTransition-OC/CustomTransitions/Adaptive Presentation/AAPLAdaptivePresentationSegue.m -------------------------------------------------------------------------------- /CustomTransition/CustomTransition-OC/CustomTransitions/Adaptive Presentation/AdaptivePresentation.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CustomTransition/CustomTransition-OC/CustomTransitions/Adaptive Presentation/AdaptivePresentation.storyboard -------------------------------------------------------------------------------- /CustomTransition/CustomTransition-OC/CustomTransitions/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CustomTransition/CustomTransition-OC/CustomTransitions/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /CustomTransition/CustomTransition-OC/CustomTransitions/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CustomTransition/CustomTransition-OC/CustomTransitions/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /CustomTransition/CustomTransition-OC/CustomTransitions/Checkerboard/AAPLCheckerboardFirstViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CustomTransition/CustomTransition-OC/CustomTransitions/Checkerboard/AAPLCheckerboardFirstViewController.h -------------------------------------------------------------------------------- /CustomTransition/CustomTransition-OC/CustomTransitions/Checkerboard/AAPLCheckerboardFirstViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CustomTransition/CustomTransition-OC/CustomTransitions/Checkerboard/AAPLCheckerboardFirstViewController.m -------------------------------------------------------------------------------- /CustomTransition/CustomTransition-OC/CustomTransitions/Checkerboard/AAPLCheckerboardTransitionAnimator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CustomTransition/CustomTransition-OC/CustomTransitions/Checkerboard/AAPLCheckerboardTransitionAnimator.h -------------------------------------------------------------------------------- /CustomTransition/CustomTransition-OC/CustomTransitions/Checkerboard/AAPLCheckerboardTransitionAnimator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CustomTransition/CustomTransition-OC/CustomTransitions/Checkerboard/AAPLCheckerboardTransitionAnimator.m -------------------------------------------------------------------------------- /CustomTransition/CustomTransition-OC/CustomTransitions/Checkerboard/Checkerboard.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CustomTransition/CustomTransition-OC/CustomTransitions/Checkerboard/Checkerboard.storyboard -------------------------------------------------------------------------------- /CustomTransition/CustomTransition-OC/CustomTransitions/Cross Dissolve/AAPLCrossDissolveFirstViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CustomTransition/CustomTransition-OC/CustomTransitions/Cross Dissolve/AAPLCrossDissolveFirstViewController.h -------------------------------------------------------------------------------- /CustomTransition/CustomTransition-OC/CustomTransitions/Cross Dissolve/AAPLCrossDissolveFirstViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CustomTransition/CustomTransition-OC/CustomTransitions/Cross Dissolve/AAPLCrossDissolveFirstViewController.m -------------------------------------------------------------------------------- /CustomTransition/CustomTransition-OC/CustomTransitions/Cross Dissolve/AAPLCrossDissolveSecondViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CustomTransition/CustomTransition-OC/CustomTransitions/Cross Dissolve/AAPLCrossDissolveSecondViewController.h -------------------------------------------------------------------------------- /CustomTransition/CustomTransition-OC/CustomTransitions/Cross Dissolve/AAPLCrossDissolveSecondViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CustomTransition/CustomTransition-OC/CustomTransitions/Cross Dissolve/AAPLCrossDissolveSecondViewController.m -------------------------------------------------------------------------------- /CustomTransition/CustomTransition-OC/CustomTransitions/Cross Dissolve/AAPLCrossDissolveTransitionAnimator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CustomTransition/CustomTransition-OC/CustomTransitions/Cross Dissolve/AAPLCrossDissolveTransitionAnimator.h -------------------------------------------------------------------------------- /CustomTransition/CustomTransition-OC/CustomTransitions/Cross Dissolve/AAPLCrossDissolveTransitionAnimator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CustomTransition/CustomTransition-OC/CustomTransitions/Cross Dissolve/AAPLCrossDissolveTransitionAnimator.m -------------------------------------------------------------------------------- /CustomTransition/CustomTransition-OC/CustomTransitions/Cross Dissolve/CrossDissolve.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CustomTransition/CustomTransition-OC/CustomTransitions/Cross Dissolve/CrossDissolve.storyboard -------------------------------------------------------------------------------- /CustomTransition/CustomTransition-OC/CustomTransitions/Custom Presentation/AAPLCustomPresentationController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CustomTransition/CustomTransition-OC/CustomTransitions/Custom Presentation/AAPLCustomPresentationController.h -------------------------------------------------------------------------------- /CustomTransition/CustomTransition-OC/CustomTransitions/Custom Presentation/AAPLCustomPresentationController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CustomTransition/CustomTransition-OC/CustomTransitions/Custom Presentation/AAPLCustomPresentationController.m -------------------------------------------------------------------------------- /CustomTransition/CustomTransition-OC/CustomTransitions/Custom Presentation/AAPLCustomPresentationFirstViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CustomTransition/CustomTransition-OC/CustomTransitions/Custom Presentation/AAPLCustomPresentationFirstViewController.h -------------------------------------------------------------------------------- /CustomTransition/CustomTransition-OC/CustomTransitions/Custom Presentation/AAPLCustomPresentationFirstViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CustomTransition/CustomTransition-OC/CustomTransitions/Custom Presentation/AAPLCustomPresentationFirstViewController.m -------------------------------------------------------------------------------- /CustomTransition/CustomTransition-OC/CustomTransitions/Custom Presentation/AAPLCustomPresentationSecondViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CustomTransition/CustomTransition-OC/CustomTransitions/Custom Presentation/AAPLCustomPresentationSecondViewController.h -------------------------------------------------------------------------------- /CustomTransition/CustomTransition-OC/CustomTransitions/Custom Presentation/AAPLCustomPresentationSecondViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CustomTransition/CustomTransition-OC/CustomTransitions/Custom Presentation/AAPLCustomPresentationSecondViewController.m -------------------------------------------------------------------------------- /CustomTransition/CustomTransition-OC/CustomTransitions/Custom Presentation/CustomPresentation.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CustomTransition/CustomTransition-OC/CustomTransitions/Custom Presentation/CustomPresentation.storyboard -------------------------------------------------------------------------------- /CustomTransition/CustomTransition-OC/CustomTransitions/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CustomTransition/CustomTransition-OC/CustomTransitions/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /CustomTransition/CustomTransition-OC/CustomTransitions/Images.xcassets/CloseButton.imageset/CloseButton.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CustomTransition/CustomTransition-OC/CustomTransitions/Images.xcassets/CloseButton.imageset/CloseButton.pdf -------------------------------------------------------------------------------- /CustomTransition/CustomTransition-OC/CustomTransitions/Images.xcassets/CloseButton.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CustomTransition/CustomTransition-OC/CustomTransitions/Images.xcassets/CloseButton.imageset/Contents.json -------------------------------------------------------------------------------- /CustomTransition/CustomTransition-OC/CustomTransitions/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CustomTransition/CustomTransition-OC/CustomTransitions/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /CustomTransition/CustomTransition-OC/CustomTransitions/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CustomTransition/CustomTransition-OC/CustomTransitions/Info.plist -------------------------------------------------------------------------------- /CustomTransition/CustomTransition-OC/CustomTransitions/Slide/AAPLSlideTransitionAnimator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CustomTransition/CustomTransition-OC/CustomTransitions/Slide/AAPLSlideTransitionAnimator.h -------------------------------------------------------------------------------- /CustomTransition/CustomTransition-OC/CustomTransitions/Slide/AAPLSlideTransitionAnimator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CustomTransition/CustomTransition-OC/CustomTransitions/Slide/AAPLSlideTransitionAnimator.m -------------------------------------------------------------------------------- /CustomTransition/CustomTransition-OC/CustomTransitions/Slide/AAPLSlideTransitionDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CustomTransition/CustomTransition-OC/CustomTransitions/Slide/AAPLSlideTransitionDelegate.h -------------------------------------------------------------------------------- /CustomTransition/CustomTransition-OC/CustomTransitions/Slide/AAPLSlideTransitionDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CustomTransition/CustomTransition-OC/CustomTransitions/Slide/AAPLSlideTransitionDelegate.m -------------------------------------------------------------------------------- /CustomTransition/CustomTransition-OC/CustomTransitions/Slide/AAPLSlideTransitionInteractionController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CustomTransition/CustomTransition-OC/CustomTransitions/Slide/AAPLSlideTransitionInteractionController.h -------------------------------------------------------------------------------- /CustomTransition/CustomTransition-OC/CustomTransitions/Slide/AAPLSlideTransitionInteractionController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CustomTransition/CustomTransition-OC/CustomTransitions/Slide/AAPLSlideTransitionInteractionController.m -------------------------------------------------------------------------------- /CustomTransition/CustomTransition-OC/CustomTransitions/Slide/Slide.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CustomTransition/CustomTransition-OC/CustomTransitions/Slide/Slide.storyboard -------------------------------------------------------------------------------- /CustomTransition/CustomTransition-OC/CustomTransitions/Swipe/AAPLSwipeFirstViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CustomTransition/CustomTransition-OC/CustomTransitions/Swipe/AAPLSwipeFirstViewController.h -------------------------------------------------------------------------------- /CustomTransition/CustomTransition-OC/CustomTransitions/Swipe/AAPLSwipeFirstViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CustomTransition/CustomTransition-OC/CustomTransitions/Swipe/AAPLSwipeFirstViewController.m -------------------------------------------------------------------------------- /CustomTransition/CustomTransition-OC/CustomTransitions/Swipe/AAPLSwipeSecondViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CustomTransition/CustomTransition-OC/CustomTransitions/Swipe/AAPLSwipeSecondViewController.h -------------------------------------------------------------------------------- /CustomTransition/CustomTransition-OC/CustomTransitions/Swipe/AAPLSwipeSecondViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CustomTransition/CustomTransition-OC/CustomTransitions/Swipe/AAPLSwipeSecondViewController.m -------------------------------------------------------------------------------- /CustomTransition/CustomTransition-OC/CustomTransitions/Swipe/AAPLSwipeTransitionAnimator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CustomTransition/CustomTransition-OC/CustomTransitions/Swipe/AAPLSwipeTransitionAnimator.h -------------------------------------------------------------------------------- /CustomTransition/CustomTransition-OC/CustomTransitions/Swipe/AAPLSwipeTransitionAnimator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CustomTransition/CustomTransition-OC/CustomTransitions/Swipe/AAPLSwipeTransitionAnimator.m -------------------------------------------------------------------------------- /CustomTransition/CustomTransition-OC/CustomTransitions/Swipe/AAPLSwipeTransitionDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CustomTransition/CustomTransition-OC/CustomTransitions/Swipe/AAPLSwipeTransitionDelegate.h -------------------------------------------------------------------------------- /CustomTransition/CustomTransition-OC/CustomTransitions/Swipe/AAPLSwipeTransitionDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CustomTransition/CustomTransition-OC/CustomTransitions/Swipe/AAPLSwipeTransitionDelegate.m -------------------------------------------------------------------------------- /CustomTransition/CustomTransition-OC/CustomTransitions/Swipe/AAPLSwipeTransitionInteractionController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CustomTransition/CustomTransition-OC/CustomTransitions/Swipe/AAPLSwipeTransitionInteractionController.h -------------------------------------------------------------------------------- /CustomTransition/CustomTransition-OC/CustomTransitions/Swipe/AAPLSwipeTransitionInteractionController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CustomTransition/CustomTransition-OC/CustomTransitions/Swipe/AAPLSwipeTransitionInteractionController.m -------------------------------------------------------------------------------- /CustomTransition/CustomTransition-OC/CustomTransitions/Swipe/Swipe.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CustomTransition/CustomTransition-OC/CustomTransitions/Swipe/Swipe.storyboard -------------------------------------------------------------------------------- /CustomTransition/CustomTransition-OC/CustomTransitions/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CustomTransition/CustomTransition-OC/CustomTransitions/main.m -------------------------------------------------------------------------------- /CustomTransition/CustomTransition-OC/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CustomTransition/CustomTransition-OC/LICENSE.txt -------------------------------------------------------------------------------- /CustomTransition/CustomTransition-OC/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CustomTransition/CustomTransition-OC/README.md -------------------------------------------------------------------------------- /CustomTransition/CustomTransition-Swift/CustomTransition-Swift.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CustomTransition/CustomTransition-Swift/CustomTransition-Swift.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /CustomTransition/CustomTransition-Swift/CustomTransition-Swift/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CustomTransition/CustomTransition-Swift/CustomTransition-Swift/AppDelegate.swift -------------------------------------------------------------------------------- /CustomTransition/CustomTransition-Swift/CustomTransition-Swift/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CustomTransition/CustomTransition-Swift/CustomTransition-Swift/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /CustomTransition/CustomTransition-Swift/CustomTransition-Swift/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CustomTransition/CustomTransition-Swift/CustomTransition-Swift/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /CustomTransition/CustomTransition-Swift/CustomTransition-Swift/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CustomTransition/CustomTransition-Swift/CustomTransition-Swift/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /CustomTransition/CustomTransition-Swift/CustomTransition-Swift/Cross Dissolve/CrossDissolveAnimator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CustomTransition/CustomTransition-Swift/CustomTransition-Swift/Cross Dissolve/CrossDissolveAnimator.swift -------------------------------------------------------------------------------- /CustomTransition/CustomTransition-Swift/CustomTransition-Swift/Cross Dissolve/CrossDissolveFirstViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CustomTransition/CustomTransition-Swift/CustomTransition-Swift/Cross Dissolve/CrossDissolveFirstViewController.swift -------------------------------------------------------------------------------- /CustomTransition/CustomTransition-Swift/CustomTransition-Swift/Cross Dissolve/CrossDissolveSecondViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CustomTransition/CustomTransition-Swift/CustomTransition-Swift/Cross Dissolve/CrossDissolveSecondViewController.swift -------------------------------------------------------------------------------- /CustomTransition/CustomTransition-Swift/CustomTransition-Swift/Cross Dissolve/HalfWaySpringAnimator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CustomTransition/CustomTransition-Swift/CustomTransition-Swift/Cross Dissolve/HalfWaySpringAnimator.swift -------------------------------------------------------------------------------- /CustomTransition/CustomTransition-Swift/CustomTransition-Swift/Custom Presentation/CustomPresentationAnimator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CustomTransition/CustomTransition-Swift/CustomTransition-Swift/Custom Presentation/CustomPresentationAnimator.swift -------------------------------------------------------------------------------- /CustomTransition/CustomTransition-Swift/CustomTransition-Swift/Custom Presentation/CustomPresentationController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CustomTransition/CustomTransition-Swift/CustomTransition-Swift/Custom Presentation/CustomPresentationController.swift -------------------------------------------------------------------------------- /CustomTransition/CustomTransition-Swift/CustomTransition-Swift/Custom Presentation/CustomPresentationFirstViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CustomTransition/CustomTransition-Swift/CustomTransition-Swift/Custom Presentation/CustomPresentationFirstViewController.swift -------------------------------------------------------------------------------- /CustomTransition/CustomTransition-Swift/CustomTransition-Swift/Custom Presentation/CustomPresentationSecondViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CustomTransition/CustomTransition-Swift/CustomTransition-Swift/Custom Presentation/CustomPresentationSecondViewController.swift -------------------------------------------------------------------------------- /CustomTransition/CustomTransition-Swift/CustomTransition-Swift/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CustomTransition/CustomTransition-Swift/CustomTransition-Swift/Info.plist -------------------------------------------------------------------------------- /CustomTransition/CustomTransition-Swift/CustomTransition-Swift/Interactivity/InteractivityFirstViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CustomTransition/CustomTransition-Swift/CustomTransition-Swift/Interactivity/InteractivityFirstViewController.swift -------------------------------------------------------------------------------- /CustomTransition/CustomTransition-Swift/CustomTransition-Swift/Interactivity/InteractivitySecondViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CustomTransition/CustomTransition-Swift/CustomTransition-Swift/Interactivity/InteractivitySecondViewController.swift -------------------------------------------------------------------------------- /CustomTransition/CustomTransition-Swift/CustomTransition-Swift/Interactivity/InteractivityTransitionAnimator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CustomTransition/CustomTransition-Swift/CustomTransition-Swift/Interactivity/InteractivityTransitionAnimator.swift -------------------------------------------------------------------------------- /CustomTransition/CustomTransition-Swift/CustomTransition-Swift/Interactivity/InteractivityTransitionDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CustomTransition/CustomTransition-Swift/CustomTransition-Swift/Interactivity/InteractivityTransitionDelegate.swift -------------------------------------------------------------------------------- /CustomTransition/CustomTransition-Swift/CustomTransition-Swift/Interactivity/TransitionInteractionController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CustomTransition/CustomTransition-Swift/CustomTransition-Swift/Interactivity/TransitionInteractionController.swift -------------------------------------------------------------------------------- /CustomTransition/CustomTransition-Swift/CustomTransition-Swift/UIViewShortHand.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CustomTransition/CustomTransition-Swift/CustomTransition-Swift/UIViewShortHand.swift -------------------------------------------------------------------------------- /CustomTransition/CustomTransition-Swift/CustomTransition-Swift/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CustomTransition/CustomTransition-Swift/CustomTransition-Swift/ViewController.swift -------------------------------------------------------------------------------- /CustomTransition/CustomTransition-Swift/CustomTransition-SwiftTests/CustomTransition_SwiftTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CustomTransition/CustomTransition-Swift/CustomTransition-SwiftTests/CustomTransition_SwiftTests.swift -------------------------------------------------------------------------------- /CustomTransition/CustomTransition-Swift/CustomTransition-SwiftTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CustomTransition/CustomTransition-Swift/CustomTransition-SwiftTests/Info.plist -------------------------------------------------------------------------------- /CustomTransition/CustomTransition-Swift/CustomTransition-SwiftUITests/CustomTransition_SwiftUITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CustomTransition/CustomTransition-Swift/CustomTransition-SwiftUITests/CustomTransition_SwiftUITests.swift -------------------------------------------------------------------------------- /CustomTransition/CustomTransition-Swift/CustomTransition-SwiftUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CustomTransition/CustomTransition-Swift/CustomTransition-SwiftUITests/Info.plist -------------------------------------------------------------------------------- /CustomTransition/CustomTransition-Swift/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CustomTransition/CustomTransition-Swift/Podfile -------------------------------------------------------------------------------- /CustomTransition/CustomTransition-Swift/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CustomTransition/CustomTransition-Swift/Podfile.lock -------------------------------------------------------------------------------- /CustomTransition/CustomTransition-Swift/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CustomTransition/CustomTransition-Swift/Pods/Manifest.lock -------------------------------------------------------------------------------- /CustomTransition/CustomTransition-Swift/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CustomTransition/CustomTransition-Swift/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /CustomTransition/CustomTransition-Swift/Pods/SnapKit/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CustomTransition/CustomTransition-Swift/Pods/SnapKit/LICENSE -------------------------------------------------------------------------------- /CustomTransition/CustomTransition-Swift/Pods/SnapKit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CustomTransition/CustomTransition-Swift/Pods/SnapKit/README.md -------------------------------------------------------------------------------- /CustomTransition/CustomTransition-Swift/Pods/SnapKit/Source/Constraint.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CustomTransition/CustomTransition-Swift/Pods/SnapKit/Source/Constraint.swift -------------------------------------------------------------------------------- /CustomTransition/CustomTransition-Swift/Pods/SnapKit/Source/ConstraintAttributes.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CustomTransition/CustomTransition-Swift/Pods/SnapKit/Source/ConstraintAttributes.swift -------------------------------------------------------------------------------- /CustomTransition/CustomTransition-Swift/Pods/SnapKit/Source/ConstraintDescription.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CustomTransition/CustomTransition-Swift/Pods/SnapKit/Source/ConstraintDescription.swift -------------------------------------------------------------------------------- /CustomTransition/CustomTransition-Swift/Pods/SnapKit/Source/ConstraintItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CustomTransition/CustomTransition-Swift/Pods/SnapKit/Source/ConstraintItem.swift -------------------------------------------------------------------------------- /CustomTransition/CustomTransition-Swift/Pods/SnapKit/Source/ConstraintMaker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CustomTransition/CustomTransition-Swift/Pods/SnapKit/Source/ConstraintMaker.swift -------------------------------------------------------------------------------- /CustomTransition/CustomTransition-Swift/Pods/SnapKit/Source/ConstraintRelation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CustomTransition/CustomTransition-Swift/Pods/SnapKit/Source/ConstraintRelation.swift -------------------------------------------------------------------------------- /CustomTransition/CustomTransition-Swift/Pods/SnapKit/Source/Debugging.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CustomTransition/CustomTransition-Swift/Pods/SnapKit/Source/Debugging.swift -------------------------------------------------------------------------------- /CustomTransition/CustomTransition-Swift/Pods/SnapKit/Source/EdgeInsets.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CustomTransition/CustomTransition-Swift/Pods/SnapKit/Source/EdgeInsets.swift -------------------------------------------------------------------------------- /CustomTransition/CustomTransition-Swift/Pods/SnapKit/Source/LayoutConstraint.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CustomTransition/CustomTransition-Swift/Pods/SnapKit/Source/LayoutConstraint.swift -------------------------------------------------------------------------------- /CustomTransition/CustomTransition-Swift/Pods/SnapKit/Source/SnapKit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CustomTransition/CustomTransition-Swift/Pods/SnapKit/Source/SnapKit.swift -------------------------------------------------------------------------------- /CustomTransition/CustomTransition-Swift/Pods/SnapKit/Source/View+SnapKit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CustomTransition/CustomTransition-Swift/Pods/SnapKit/Source/View+SnapKit.swift -------------------------------------------------------------------------------- /CustomTransition/CustomTransition-Swift/Pods/SnapKit/Source/ViewController+SnapKit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CustomTransition/CustomTransition-Swift/Pods/SnapKit/Source/ViewController+SnapKit.swift -------------------------------------------------------------------------------- /CustomTransition/CustomTransition-Swift/Pods/Target Support Files/Pods/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CustomTransition/CustomTransition-Swift/Pods/Target Support Files/Pods/Info.plist -------------------------------------------------------------------------------- /CustomTransition/CustomTransition-Swift/Pods/Target Support Files/Pods/Pods-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CustomTransition/CustomTransition-Swift/Pods/Target Support Files/Pods/Pods-acknowledgements.markdown -------------------------------------------------------------------------------- /CustomTransition/CustomTransition-Swift/Pods/Target Support Files/Pods/Pods-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CustomTransition/CustomTransition-Swift/Pods/Target Support Files/Pods/Pods-acknowledgements.plist -------------------------------------------------------------------------------- /CustomTransition/CustomTransition-Swift/Pods/Target Support Files/Pods/Pods-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CustomTransition/CustomTransition-Swift/Pods/Target Support Files/Pods/Pods-dummy.m -------------------------------------------------------------------------------- /CustomTransition/CustomTransition-Swift/Pods/Target Support Files/Pods/Pods-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CustomTransition/CustomTransition-Swift/Pods/Target Support Files/Pods/Pods-frameworks.sh -------------------------------------------------------------------------------- /CustomTransition/CustomTransition-Swift/Pods/Target Support Files/Pods/Pods-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CustomTransition/CustomTransition-Swift/Pods/Target Support Files/Pods/Pods-resources.sh -------------------------------------------------------------------------------- /CustomTransition/CustomTransition-Swift/Pods/Target Support Files/Pods/Pods-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CustomTransition/CustomTransition-Swift/Pods/Target Support Files/Pods/Pods-umbrella.h -------------------------------------------------------------------------------- /CustomTransition/CustomTransition-Swift/Pods/Target Support Files/Pods/Pods.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CustomTransition/CustomTransition-Swift/Pods/Target Support Files/Pods/Pods.debug.xcconfig -------------------------------------------------------------------------------- /CustomTransition/CustomTransition-Swift/Pods/Target Support Files/Pods/Pods.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CustomTransition/CustomTransition-Swift/Pods/Target Support Files/Pods/Pods.modulemap -------------------------------------------------------------------------------- /CustomTransition/CustomTransition-Swift/Pods/Target Support Files/Pods/Pods.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CustomTransition/CustomTransition-Swift/Pods/Target Support Files/Pods/Pods.release.xcconfig -------------------------------------------------------------------------------- /CustomTransition/CustomTransition-Swift/Pods/Target Support Files/SnapKit/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CustomTransition/CustomTransition-Swift/Pods/Target Support Files/SnapKit/Info.plist -------------------------------------------------------------------------------- /CustomTransition/CustomTransition-Swift/Pods/Target Support Files/SnapKit/SnapKit-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CustomTransition/CustomTransition-Swift/Pods/Target Support Files/SnapKit/SnapKit-dummy.m -------------------------------------------------------------------------------- /CustomTransition/CustomTransition-Swift/Pods/Target Support Files/SnapKit/SnapKit-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CustomTransition/CustomTransition-Swift/Pods/Target Support Files/SnapKit/SnapKit-prefix.pch -------------------------------------------------------------------------------- /CustomTransition/CustomTransition-Swift/Pods/Target Support Files/SnapKit/SnapKit-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CustomTransition/CustomTransition-Swift/Pods/Target Support Files/SnapKit/SnapKit-umbrella.h -------------------------------------------------------------------------------- /CustomTransition/CustomTransition-Swift/Pods/Target Support Files/SnapKit/SnapKit.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CustomTransition/CustomTransition-Swift/Pods/Target Support Files/SnapKit/SnapKit.modulemap -------------------------------------------------------------------------------- /CustomTransition/CustomTransition-Swift/Pods/Target Support Files/SnapKit/SnapKit.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CustomTransition/CustomTransition-Swift/Pods/Target Support Files/SnapKit/SnapKit.xcconfig -------------------------------------------------------------------------------- /CustomTransition/CustomTransition-Swift/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/CustomTransition/CustomTransition-Swift/README.md -------------------------------------------------------------------------------- /Effective OC/EffectiveObjectiveC/EffectiveObjectiveC.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/Effective OC/EffectiveObjectiveC/EffectiveObjectiveC.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Effective OC/EffectiveObjectiveC/EffectiveObjectiveC/EOCEmployee.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/Effective OC/EffectiveObjectiveC/EffectiveObjectiveC/EOCEmployee.h -------------------------------------------------------------------------------- /Effective OC/EffectiveObjectiveC/EffectiveObjectiveC/EOCEmployee.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/Effective OC/EffectiveObjectiveC/EffectiveObjectiveC/EOCEmployee.m -------------------------------------------------------------------------------- /Effective OC/EffectiveObjectiveC/EffectiveObjectiveC/EOCEmployeeDesigner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/Effective OC/EffectiveObjectiveC/EffectiveObjectiveC/EOCEmployeeDesigner.h -------------------------------------------------------------------------------- /Effective OC/EffectiveObjectiveC/EffectiveObjectiveC/EOCEmployeeDesigner.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/Effective OC/EffectiveObjectiveC/EffectiveObjectiveC/EOCEmployeeDesigner.m -------------------------------------------------------------------------------- /Effective OC/EffectiveObjectiveC/EffectiveObjectiveC/EOCEmployeeDeveloper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/Effective OC/EffectiveObjectiveC/EffectiveObjectiveC/EOCEmployeeDeveloper.h -------------------------------------------------------------------------------- /Effective OC/EffectiveObjectiveC/EffectiveObjectiveC/EOCEmployeeDeveloper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/Effective OC/EffectiveObjectiveC/EffectiveObjectiveC/EOCEmployeeDeveloper.m -------------------------------------------------------------------------------- /Effective OC/EffectiveObjectiveC/EffectiveObjectiveC/EOCEmployeeFinance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/Effective OC/EffectiveObjectiveC/EffectiveObjectiveC/EOCEmployeeFinance.h -------------------------------------------------------------------------------- /Effective OC/EffectiveObjectiveC/EffectiveObjectiveC/EOCEmployeeFinance.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/Effective OC/EffectiveObjectiveC/EffectiveObjectiveC/EOCEmployeeFinance.m -------------------------------------------------------------------------------- /Effective OC/EffectiveObjectiveC/EffectiveObjectiveC/EOCErrors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/Effective OC/EffectiveObjectiveC/EffectiveObjectiveC/EOCErrors.h -------------------------------------------------------------------------------- /Effective OC/EffectiveObjectiveC/EffectiveObjectiveC/EOCErrors.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/Effective OC/EffectiveObjectiveC/EffectiveObjectiveC/EOCErrors.m -------------------------------------------------------------------------------- /Effective OC/EffectiveObjectiveC/EffectiveObjectiveC/EOCPerson.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/Effective OC/EffectiveObjectiveC/EffectiveObjectiveC/EOCPerson.h -------------------------------------------------------------------------------- /Effective OC/EffectiveObjectiveC/EffectiveObjectiveC/EOCPerson.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/Effective OC/EffectiveObjectiveC/EffectiveObjectiveC/EOCPerson.m -------------------------------------------------------------------------------- /Effective OC/EffectiveObjectiveC/EffectiveObjectiveC/EOCSmithPerson.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/Effective OC/EffectiveObjectiveC/EffectiveObjectiveC/EOCSmithPerson.h -------------------------------------------------------------------------------- /Effective OC/EffectiveObjectiveC/EffectiveObjectiveC/EOCSmithPerson.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/Effective OC/EffectiveObjectiveC/EffectiveObjectiveC/EOCSmithPerson.m -------------------------------------------------------------------------------- /Effective OC/EffectiveObjectiveC/EffectiveObjectiveC/Enum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/Effective OC/EffectiveObjectiveC/EffectiveObjectiveC/Enum.h -------------------------------------------------------------------------------- /Effective OC/EffectiveObjectiveC/EffectiveObjectiveC/Enum.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/Effective OC/EffectiveObjectiveC/EffectiveObjectiveC/Enum.m -------------------------------------------------------------------------------- /Effective OC/EffectiveObjectiveC/EffectiveObjectiveC/HashTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/Effective OC/EffectiveObjectiveC/EffectiveObjectiveC/HashTest.h -------------------------------------------------------------------------------- /Effective OC/EffectiveObjectiveC/EffectiveObjectiveC/HashTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/Effective OC/EffectiveObjectiveC/EffectiveObjectiveC/HashTest.m -------------------------------------------------------------------------------- /Effective OC/EffectiveObjectiveC/EffectiveObjectiveC/Literal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/Effective OC/EffectiveObjectiveC/EffectiveObjectiveC/Literal.h -------------------------------------------------------------------------------- /Effective OC/EffectiveObjectiveC/EffectiveObjectiveC/Literal.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/Effective OC/EffectiveObjectiveC/EffectiveObjectiveC/Literal.m -------------------------------------------------------------------------------- /Effective OC/EffectiveObjectiveC/EffectiveObjectiveC/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/Effective OC/EffectiveObjectiveC/EffectiveObjectiveC/main.m -------------------------------------------------------------------------------- /Effective OC/读书总结.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/Effective OC/读书总结.md -------------------------------------------------------------------------------- /Enum/Enum.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/Enum/Enum.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Enum/Enum/Enum-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/Enum/Enum/Enum-Bridging-Header.h -------------------------------------------------------------------------------- /Enum/Enum/OCEnum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/Enum/Enum/OCEnum.h -------------------------------------------------------------------------------- /Enum/Enum/Tree.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/Enum/Enum/Tree.swift -------------------------------------------------------------------------------- /Enum/Enum/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/Enum/Enum/main.swift -------------------------------------------------------------------------------- /GraphicsPerformance-Starter/GraphicsPerformance-Starter.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/GraphicsPerformance-Starter/GraphicsPerformance-Starter.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /GraphicsPerformance-Starter/GraphicsPerformance-Starter.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/GraphicsPerformance-Starter/GraphicsPerformance-Starter.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /GraphicsPerformance-Starter/GraphicsPerformance-Starter/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/GraphicsPerformance-Starter/GraphicsPerformance-Starter/AppDelegate.swift -------------------------------------------------------------------------------- /GraphicsPerformance-Starter/GraphicsPerformance-Starter/Assets.xcassets/1.imageset/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/GraphicsPerformance-Starter/GraphicsPerformance-Starter/Assets.xcassets/1.imageset/1.png -------------------------------------------------------------------------------- /GraphicsPerformance-Starter/GraphicsPerformance-Starter/Assets.xcassets/1.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/GraphicsPerformance-Starter/GraphicsPerformance-Starter/Assets.xcassets/1.imageset/Contents.json -------------------------------------------------------------------------------- /GraphicsPerformance-Starter/GraphicsPerformance-Starter/Assets.xcassets/10.imageset/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/GraphicsPerformance-Starter/GraphicsPerformance-Starter/Assets.xcassets/10.imageset/10.png -------------------------------------------------------------------------------- /GraphicsPerformance-Starter/GraphicsPerformance-Starter/Assets.xcassets/10.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/GraphicsPerformance-Starter/GraphicsPerformance-Starter/Assets.xcassets/10.imageset/Contents.json -------------------------------------------------------------------------------- /GraphicsPerformance-Starter/GraphicsPerformance-Starter/Assets.xcassets/2.imageset/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/GraphicsPerformance-Starter/GraphicsPerformance-Starter/Assets.xcassets/2.imageset/2.png -------------------------------------------------------------------------------- /GraphicsPerformance-Starter/GraphicsPerformance-Starter/Assets.xcassets/2.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/GraphicsPerformance-Starter/GraphicsPerformance-Starter/Assets.xcassets/2.imageset/Contents.json -------------------------------------------------------------------------------- /GraphicsPerformance-Starter/GraphicsPerformance-Starter/Assets.xcassets/3.imageset/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/GraphicsPerformance-Starter/GraphicsPerformance-Starter/Assets.xcassets/3.imageset/3.png -------------------------------------------------------------------------------- /GraphicsPerformance-Starter/GraphicsPerformance-Starter/Assets.xcassets/3.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/GraphicsPerformance-Starter/GraphicsPerformance-Starter/Assets.xcassets/3.imageset/Contents.json -------------------------------------------------------------------------------- /GraphicsPerformance-Starter/GraphicsPerformance-Starter/Assets.xcassets/4.imageset/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/GraphicsPerformance-Starter/GraphicsPerformance-Starter/Assets.xcassets/4.imageset/4.png -------------------------------------------------------------------------------- /GraphicsPerformance-Starter/GraphicsPerformance-Starter/Assets.xcassets/4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/GraphicsPerformance-Starter/GraphicsPerformance-Starter/Assets.xcassets/4.imageset/Contents.json -------------------------------------------------------------------------------- /GraphicsPerformance-Starter/GraphicsPerformance-Starter/Assets.xcassets/5.imageset/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/GraphicsPerformance-Starter/GraphicsPerformance-Starter/Assets.xcassets/5.imageset/5.png -------------------------------------------------------------------------------- /GraphicsPerformance-Starter/GraphicsPerformance-Starter/Assets.xcassets/5.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/GraphicsPerformance-Starter/GraphicsPerformance-Starter/Assets.xcassets/5.imageset/Contents.json -------------------------------------------------------------------------------- /GraphicsPerformance-Starter/GraphicsPerformance-Starter/Assets.xcassets/6.imageset/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/GraphicsPerformance-Starter/GraphicsPerformance-Starter/Assets.xcassets/6.imageset/6.png -------------------------------------------------------------------------------- /GraphicsPerformance-Starter/GraphicsPerformance-Starter/Assets.xcassets/6.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/GraphicsPerformance-Starter/GraphicsPerformance-Starter/Assets.xcassets/6.imageset/Contents.json -------------------------------------------------------------------------------- /GraphicsPerformance-Starter/GraphicsPerformance-Starter/Assets.xcassets/7.imageset/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/GraphicsPerformance-Starter/GraphicsPerformance-Starter/Assets.xcassets/7.imageset/7.png -------------------------------------------------------------------------------- /GraphicsPerformance-Starter/GraphicsPerformance-Starter/Assets.xcassets/7.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/GraphicsPerformance-Starter/GraphicsPerformance-Starter/Assets.xcassets/7.imageset/Contents.json -------------------------------------------------------------------------------- /GraphicsPerformance-Starter/GraphicsPerformance-Starter/Assets.xcassets/8.imageset/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/GraphicsPerformance-Starter/GraphicsPerformance-Starter/Assets.xcassets/8.imageset/8.png -------------------------------------------------------------------------------- /GraphicsPerformance-Starter/GraphicsPerformance-Starter/Assets.xcassets/8.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/GraphicsPerformance-Starter/GraphicsPerformance-Starter/Assets.xcassets/8.imageset/Contents.json -------------------------------------------------------------------------------- /GraphicsPerformance-Starter/GraphicsPerformance-Starter/Assets.xcassets/9.imageset/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/GraphicsPerformance-Starter/GraphicsPerformance-Starter/Assets.xcassets/9.imageset/9.png -------------------------------------------------------------------------------- /GraphicsPerformance-Starter/GraphicsPerformance-Starter/Assets.xcassets/9.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/GraphicsPerformance-Starter/GraphicsPerformance-Starter/Assets.xcassets/9.imageset/Contents.json -------------------------------------------------------------------------------- /GraphicsPerformance-Starter/GraphicsPerformance-Starter/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/GraphicsPerformance-Starter/GraphicsPerformance-Starter/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /GraphicsPerformance-Starter/GraphicsPerformance-Starter/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/GraphicsPerformance-Starter/GraphicsPerformance-Starter/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /GraphicsPerformance-Starter/GraphicsPerformance-Starter/Assets.xcassets/first.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/GraphicsPerformance-Starter/GraphicsPerformance-Starter/Assets.xcassets/first.imageset/Contents.json -------------------------------------------------------------------------------- /GraphicsPerformance-Starter/GraphicsPerformance-Starter/Assets.xcassets/first.imageset/first.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/GraphicsPerformance-Starter/GraphicsPerformance-Starter/Assets.xcassets/first.imageset/first.pdf -------------------------------------------------------------------------------- /GraphicsPerformance-Starter/GraphicsPerformance-Starter/Assets.xcassets/second.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/GraphicsPerformance-Starter/GraphicsPerformance-Starter/Assets.xcassets/second.imageset/Contents.json -------------------------------------------------------------------------------- /GraphicsPerformance-Starter/GraphicsPerformance-Starter/Assets.xcassets/second.imageset/second.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/GraphicsPerformance-Starter/GraphicsPerformance-Starter/Assets.xcassets/second.imageset/second.pdf -------------------------------------------------------------------------------- /GraphicsPerformance-Starter/GraphicsPerformance-Starter/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/GraphicsPerformance-Starter/GraphicsPerformance-Starter/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /GraphicsPerformance-Starter/GraphicsPerformance-Starter/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/GraphicsPerformance-Starter/GraphicsPerformance-Starter/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /GraphicsPerformance-Starter/GraphicsPerformance-Starter/CustomTableCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/GraphicsPerformance-Starter/GraphicsPerformance-Starter/CustomTableCell.swift -------------------------------------------------------------------------------- /GraphicsPerformance-Starter/GraphicsPerformance-Starter/FirstViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/GraphicsPerformance-Starter/GraphicsPerformance-Starter/FirstViewController.swift -------------------------------------------------------------------------------- /GraphicsPerformance-Starter/GraphicsPerformance-Starter/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/GraphicsPerformance-Starter/GraphicsPerformance-Starter/Info.plist -------------------------------------------------------------------------------- /GraphicsPerformance-Starter/GraphicsPerformance-Starter/SecondViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/GraphicsPerformance-Starter/GraphicsPerformance-Starter/SecondViewController.swift -------------------------------------------------------------------------------- /GraphicsPerformance-Starter/GraphicsPerformance-StarterTests/GraphicsPerformance_StarterTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/GraphicsPerformance-Starter/GraphicsPerformance-StarterTests/GraphicsPerformance_StarterTests.swift -------------------------------------------------------------------------------- /GraphicsPerformance-Starter/GraphicsPerformance-StarterTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/GraphicsPerformance-Starter/GraphicsPerformance-StarterTests/Info.plist -------------------------------------------------------------------------------- /GraphicsPerformance-Starter/GraphicsPerformance-StarterUITests/GraphicsPerformance_StarterUITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/GraphicsPerformance-Starter/GraphicsPerformance-StarterUITests/GraphicsPerformance_StarterUITests.swift -------------------------------------------------------------------------------- /GraphicsPerformance-Starter/GraphicsPerformance-StarterUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/GraphicsPerformance-Starter/GraphicsPerformance-StarterUITests/Info.plist -------------------------------------------------------------------------------- /GraphicsPerformance-Starter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/GraphicsPerformance-Starter/README.md -------------------------------------------------------------------------------- /KtColor/KTColor.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/KtColor/KTColor.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /KtColor/KTColor/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/KtColor/KTColor/AppDelegate.swift -------------------------------------------------------------------------------- /KtColor/KTColor/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/KtColor/KTColor/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /KtColor/KTColor/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/KtColor/KTColor/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /KtColor/KTColor/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/KtColor/KTColor/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /KtColor/KTColor/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/KtColor/KTColor/Info.plist -------------------------------------------------------------------------------- /KtColor/KTColor/KtColor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/KtColor/KTColor/KtColor.swift -------------------------------------------------------------------------------- /KtColor/KTColor/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/KtColor/KTColor/ViewController.swift -------------------------------------------------------------------------------- /KtColor/KTColorTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/KtColor/KTColorTests/Info.plist -------------------------------------------------------------------------------- /KtColor/KTColorTests/KTColorTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/KtColor/KTColorTests/KTColorTests.swift -------------------------------------------------------------------------------- /KtColor/KTColorUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/KtColor/KTColorUITests/Info.plist -------------------------------------------------------------------------------- /KtColor/KTColorUITests/KTColorUITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/KtColor/KTColorUITests/KTColorUITests.swift -------------------------------------------------------------------------------- /KtColor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/KtColor/README.md -------------------------------------------------------------------------------- /KtTableView/KtTableView.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/KtTableView/KtTableView.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /KtTableView/KtTableView.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/KtTableView/KtTableView.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /KtTableView/KtTableView.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/KtTableView/KtTableView.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /KtTableView/KtTableView/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/KtTableView/KtTableView/AppDelegate.h -------------------------------------------------------------------------------- /KtTableView/KtTableView/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/KtTableView/KtTableView/AppDelegate.m -------------------------------------------------------------------------------- /KtTableView/KtTableView/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/KtTableView/KtTableView/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /KtTableView/KtTableView/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/KtTableView/KtTableView/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /KtTableView/KtTableView/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/KtTableView/KtTableView/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /KtTableView/KtTableView/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/KtTableView/KtTableView/Info.plist -------------------------------------------------------------------------------- /KtTableView/KtTableView/KTMainViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/KtTableView/KtTableView/KTMainViewController.h -------------------------------------------------------------------------------- /KtTableView/KtTableView/KTMainViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/KtTableView/KtTableView/KTMainViewController.m -------------------------------------------------------------------------------- /KtTableView/KtTableView/KtBaseModel/KtBaseItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/KtTableView/KtTableView/KtBaseModel/KtBaseItem.h -------------------------------------------------------------------------------- /KtTableView/KtTableView/KtBaseModel/KtBaseItem.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/KtTableView/KtTableView/KtBaseModel/KtBaseItem.m -------------------------------------------------------------------------------- /KtTableView/KtTableView/KtBaseModel/KtBaseListModel/KtBaseListItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/KtTableView/KtTableView/KtBaseModel/KtBaseListModel/KtBaseListItem.h -------------------------------------------------------------------------------- /KtTableView/KtTableView/KtBaseModel/KtBaseListModel/KtBaseListItem.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/KtTableView/KtTableView/KtBaseModel/KtBaseListModel/KtBaseListItem.m -------------------------------------------------------------------------------- /KtTableView/KtTableView/KtBaseModel/KtBaseListModel/KtBaseListModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/KtTableView/KtTableView/KtBaseModel/KtBaseListModel/KtBaseListModel.h -------------------------------------------------------------------------------- /KtTableView/KtTableView/KtBaseModel/KtBaseListModel/KtBaseListModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/KtTableView/KtTableView/KtBaseModel/KtBaseListModel/KtBaseListModel.m -------------------------------------------------------------------------------- /KtTableView/KtTableView/KtBaseModel/KtBaseListModel/KtRefreshTableViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/KtTableView/KtTableView/KtBaseModel/KtBaseListModel/KtRefreshTableViewController.h -------------------------------------------------------------------------------- /KtTableView/KtTableView/KtBaseModel/KtBaseListModel/KtRefreshTableViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/KtTableView/KtTableView/KtBaseModel/KtBaseListModel/KtRefreshTableViewController.m -------------------------------------------------------------------------------- /KtTableView/KtTableView/KtBaseModel/KtBaseModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/KtTableView/KtTableView/KtBaseModel/KtBaseModel.h -------------------------------------------------------------------------------- /KtTableView/KtTableView/KtBaseModel/KtBaseModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/KtTableView/KtTableView/KtBaseModel/KtBaseModel.m -------------------------------------------------------------------------------- /KtTableView/KtTableView/KtBaseModel/KtBaseServerAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/KtTableView/KtTableView/KtBaseModel/KtBaseServerAPI.h -------------------------------------------------------------------------------- /KtTableView/KtTableView/KtBaseModel/KtBaseServerAPI.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/KtTableView/KtTableView/KtBaseModel/KtBaseServerAPI.m -------------------------------------------------------------------------------- /KtTableView/KtTableView/KtBaseTableView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/KtTableView/KtTableView/KtBaseTableView.h -------------------------------------------------------------------------------- /KtTableView/KtTableView/KtBaseTableView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/KtTableView/KtTableView/KtBaseTableView.m -------------------------------------------------------------------------------- /KtTableView/KtTableView/KtBaseTableViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/KtTableView/KtTableView/KtBaseTableViewCell.h -------------------------------------------------------------------------------- /KtTableView/KtTableView/KtBaseTableViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/KtTableView/KtTableView/KtBaseTableViewCell.m -------------------------------------------------------------------------------- /KtTableView/KtTableView/KtExtension/NSDictionary+KtExtension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/KtTableView/KtTableView/KtExtension/NSDictionary+KtExtension.h -------------------------------------------------------------------------------- /KtTableView/KtTableView/KtExtension/NSDictionary+KtExtension.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/KtTableView/KtTableView/KtExtension/NSDictionary+KtExtension.m -------------------------------------------------------------------------------- /KtTableView/KtTableView/KtExtension/UIView+KtExtension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/KtTableView/KtTableView/KtExtension/UIView+KtExtension.h -------------------------------------------------------------------------------- /KtTableView/KtTableView/KtExtension/UIView+KtExtension.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/KtTableView/KtTableView/KtExtension/UIView+KtExtension.m -------------------------------------------------------------------------------- /KtTableView/KtTableView/KtMainTableItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/KtTableView/KtTableView/KtMainTableItem.h -------------------------------------------------------------------------------- /KtTableView/KtTableView/KtMainTableItem.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/KtTableView/KtTableView/KtMainTableItem.m -------------------------------------------------------------------------------- /KtTableView/KtTableView/KtMainTableModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/KtTableView/KtTableView/KtMainTableModel.h -------------------------------------------------------------------------------- /KtTableView/KtTableView/KtMainTableModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/KtTableView/KtTableView/KtMainTableModel.m -------------------------------------------------------------------------------- /KtTableView/KtTableView/KtMainTableViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/KtTableView/KtTableView/KtMainTableViewCell.h -------------------------------------------------------------------------------- /KtTableView/KtTableView/KtMainTableViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/KtTableView/KtTableView/KtMainTableViewCell.m -------------------------------------------------------------------------------- /KtTableView/KtTableView/KtMainTableViewDataSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/KtTableView/KtTableView/KtMainTableViewDataSource.h -------------------------------------------------------------------------------- /KtTableView/KtTableView/KtMainTableViewDataSource.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/KtTableView/KtTableView/KtMainTableViewDataSource.m -------------------------------------------------------------------------------- /KtTableView/KtTableView/KtTableViewBaseItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/KtTableView/KtTableView/KtTableViewBaseItem.h -------------------------------------------------------------------------------- /KtTableView/KtTableView/KtTableViewBaseItem.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/KtTableView/KtTableView/KtTableViewBaseItem.m -------------------------------------------------------------------------------- /KtTableView/KtTableView/KtTableViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/KtTableView/KtTableView/KtTableViewController.h -------------------------------------------------------------------------------- /KtTableView/KtTableView/KtTableViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/KtTableView/KtTableView/KtTableViewController.m -------------------------------------------------------------------------------- /KtTableView/KtTableView/KtTableViewDataSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/KtTableView/KtTableView/KtTableViewDataSource.h -------------------------------------------------------------------------------- /KtTableView/KtTableView/KtTableViewDataSource.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/KtTableView/KtTableView/KtTableViewDataSource.m -------------------------------------------------------------------------------- /KtTableView/KtTableView/KtTableViewSectionObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/KtTableView/KtTableView/KtTableViewSectionObject.h -------------------------------------------------------------------------------- /KtTableView/KtTableView/KtTableViewSectionObject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/KtTableView/KtTableView/KtTableViewSectionObject.m -------------------------------------------------------------------------------- /KtTableView/KtTableView/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/KtTableView/KtTableView/main.m -------------------------------------------------------------------------------- /KtTableView/KtTableViewTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/KtTableView/KtTableViewTests/Info.plist -------------------------------------------------------------------------------- /KtTableView/KtTableViewTests/KtTableViewTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/KtTableView/KtTableViewTests/KtTableViewTests.m -------------------------------------------------------------------------------- /KtTableView/KtTableViewUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/KtTableView/KtTableViewUITests/Info.plist -------------------------------------------------------------------------------- /KtTableView/KtTableViewUITests/KtTableViewUITests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/KtTableView/KtTableViewUITests/KtTableViewUITests.m -------------------------------------------------------------------------------- /KtTableView/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/KtTableView/Podfile -------------------------------------------------------------------------------- /KtTableView/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/KtTableView/Podfile.lock -------------------------------------------------------------------------------- /KtTableView/Pods/AFNetworking/AFNetworking/AFHTTPSessionManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/KtTableView/Pods/AFNetworking/AFNetworking/AFHTTPSessionManager.h -------------------------------------------------------------------------------- /KtTableView/Pods/AFNetworking/AFNetworking/AFHTTPSessionManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/KtTableView/Pods/AFNetworking/AFNetworking/AFHTTPSessionManager.m -------------------------------------------------------------------------------- /KtTableView/Pods/AFNetworking/AFNetworking/AFNetworkReachabilityManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/KtTableView/Pods/AFNetworking/AFNetworking/AFNetworkReachabilityManager.h -------------------------------------------------------------------------------- /KtTableView/Pods/AFNetworking/AFNetworking/AFNetworkReachabilityManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/KtTableView/Pods/AFNetworking/AFNetworking/AFNetworkReachabilityManager.m -------------------------------------------------------------------------------- /KtTableView/Pods/AFNetworking/AFNetworking/AFNetworking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/KtTableView/Pods/AFNetworking/AFNetworking/AFNetworking.h -------------------------------------------------------------------------------- /KtTableView/Pods/AFNetworking/AFNetworking/AFSecurityPolicy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/KtTableView/Pods/AFNetworking/AFNetworking/AFSecurityPolicy.h -------------------------------------------------------------------------------- /KtTableView/Pods/AFNetworking/AFNetworking/AFSecurityPolicy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/KtTableView/Pods/AFNetworking/AFNetworking/AFSecurityPolicy.m -------------------------------------------------------------------------------- /KtTableView/Pods/AFNetworking/AFNetworking/AFURLRequestSerialization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/KtTableView/Pods/AFNetworking/AFNetworking/AFURLRequestSerialization.h -------------------------------------------------------------------------------- /KtTableView/Pods/AFNetworking/AFNetworking/AFURLRequestSerialization.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/KtTableView/Pods/AFNetworking/AFNetworking/AFURLRequestSerialization.m -------------------------------------------------------------------------------- /KtTableView/Pods/AFNetworking/AFNetworking/AFURLResponseSerialization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/KtTableView/Pods/AFNetworking/AFNetworking/AFURLResponseSerialization.h -------------------------------------------------------------------------------- /KtTableView/Pods/AFNetworking/AFNetworking/AFURLResponseSerialization.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/KtTableView/Pods/AFNetworking/AFNetworking/AFURLResponseSerialization.m -------------------------------------------------------------------------------- /KtTableView/Pods/AFNetworking/AFNetworking/AFURLSessionManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/KtTableView/Pods/AFNetworking/AFNetworking/AFURLSessionManager.h -------------------------------------------------------------------------------- /KtTableView/Pods/AFNetworking/AFNetworking/AFURLSessionManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/KtTableView/Pods/AFNetworking/AFNetworking/AFURLSessionManager.m -------------------------------------------------------------------------------- /KtTableView/Pods/AFNetworking/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/KtTableView/Pods/AFNetworking/LICENSE -------------------------------------------------------------------------------- /KtTableView/Pods/AFNetworking/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/KtTableView/Pods/AFNetworking/README.md -------------------------------------------------------------------------------- /KtTableView/Pods/AFNetworking/UIKit+AFNetworking/AFAutoPurgingImageCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/KtTableView/Pods/AFNetworking/UIKit+AFNetworking/AFAutoPurgingImageCache.h -------------------------------------------------------------------------------- /KtTableView/Pods/AFNetworking/UIKit+AFNetworking/AFAutoPurgingImageCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/KtTableView/Pods/AFNetworking/UIKit+AFNetworking/AFAutoPurgingImageCache.m -------------------------------------------------------------------------------- /KtTableView/Pods/AFNetworking/UIKit+AFNetworking/AFImageDownloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/KtTableView/Pods/AFNetworking/UIKit+AFNetworking/AFImageDownloader.h -------------------------------------------------------------------------------- /KtTableView/Pods/AFNetworking/UIKit+AFNetworking/AFImageDownloader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/KtTableView/Pods/AFNetworking/UIKit+AFNetworking/AFImageDownloader.m -------------------------------------------------------------------------------- /KtTableView/Pods/AFNetworking/UIKit+AFNetworking/AFNetworkActivityIndicatorManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/KtTableView/Pods/AFNetworking/UIKit+AFNetworking/AFNetworkActivityIndicatorManager.h -------------------------------------------------------------------------------- /KtTableView/Pods/AFNetworking/UIKit+AFNetworking/AFNetworkActivityIndicatorManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/KtTableView/Pods/AFNetworking/UIKit+AFNetworking/AFNetworkActivityIndicatorManager.m -------------------------------------------------------------------------------- /KtTableView/Pods/AFNetworking/UIKit+AFNetworking/UIActivityIndicatorView+AFNetworking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/KtTableView/Pods/AFNetworking/UIKit+AFNetworking/UIActivityIndicatorView+AFNetworking.h -------------------------------------------------------------------------------- /KtTableView/Pods/AFNetworking/UIKit+AFNetworking/UIActivityIndicatorView+AFNetworking.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/KtTableView/Pods/AFNetworking/UIKit+AFNetworking/UIActivityIndicatorView+AFNetworking.m -------------------------------------------------------------------------------- /KtTableView/Pods/AFNetworking/UIKit+AFNetworking/UIButton+AFNetworking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/KtTableView/Pods/AFNetworking/UIKit+AFNetworking/UIButton+AFNetworking.h -------------------------------------------------------------------------------- /KtTableView/Pods/AFNetworking/UIKit+AFNetworking/UIButton+AFNetworking.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/KtTableView/Pods/AFNetworking/UIKit+AFNetworking/UIButton+AFNetworking.m -------------------------------------------------------------------------------- /KtTableView/Pods/AFNetworking/UIKit+AFNetworking/UIImage+AFNetworking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/KtTableView/Pods/AFNetworking/UIKit+AFNetworking/UIImage+AFNetworking.h -------------------------------------------------------------------------------- /KtTableView/Pods/AFNetworking/UIKit+AFNetworking/UIImageView+AFNetworking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/KtTableView/Pods/AFNetworking/UIKit+AFNetworking/UIImageView+AFNetworking.h -------------------------------------------------------------------------------- /KtTableView/Pods/AFNetworking/UIKit+AFNetworking/UIImageView+AFNetworking.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/KtTableView/Pods/AFNetworking/UIKit+AFNetworking/UIImageView+AFNetworking.m -------------------------------------------------------------------------------- /KtTableView/Pods/AFNetworking/UIKit+AFNetworking/UIKit+AFNetworking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/KtTableView/Pods/AFNetworking/UIKit+AFNetworking/UIKit+AFNetworking.h -------------------------------------------------------------------------------- /KtTableView/Pods/AFNetworking/UIKit+AFNetworking/UIProgressView+AFNetworking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/KtTableView/Pods/AFNetworking/UIKit+AFNetworking/UIProgressView+AFNetworking.h -------------------------------------------------------------------------------- /KtTableView/Pods/AFNetworking/UIKit+AFNetworking/UIProgressView+AFNetworking.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/KtTableView/Pods/AFNetworking/UIKit+AFNetworking/UIProgressView+AFNetworking.m -------------------------------------------------------------------------------- /KtTableView/Pods/AFNetworking/UIKit+AFNetworking/UIRefreshControl+AFNetworking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/KtTableView/Pods/AFNetworking/UIKit+AFNetworking/UIRefreshControl+AFNetworking.h -------------------------------------------------------------------------------- /KtTableView/Pods/AFNetworking/UIKit+AFNetworking/UIRefreshControl+AFNetworking.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/KtTableView/Pods/AFNetworking/UIKit+AFNetworking/UIRefreshControl+AFNetworking.m -------------------------------------------------------------------------------- /KtTableView/Pods/AFNetworking/UIKit+AFNetworking/UIWebView+AFNetworking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/KtTableView/Pods/AFNetworking/UIKit+AFNetworking/UIWebView+AFNetworking.h -------------------------------------------------------------------------------- /KtTableView/Pods/AFNetworking/UIKit+AFNetworking/UIWebView+AFNetworking.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/KtTableView/Pods/AFNetworking/UIKit+AFNetworking/UIWebView+AFNetworking.m -------------------------------------------------------------------------------- /KtTableView/Pods/Headers/Private/AFNetworking/AFAutoPurgingImageCache.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/AFAutoPurgingImageCache.h -------------------------------------------------------------------------------- /KtTableView/Pods/Headers/Private/AFNetworking/AFHTTPSessionManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFHTTPSessionManager.h -------------------------------------------------------------------------------- /KtTableView/Pods/Headers/Private/AFNetworking/AFImageDownloader.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/AFImageDownloader.h -------------------------------------------------------------------------------- /KtTableView/Pods/Headers/Private/AFNetworking/AFNetworkActivityIndicatorManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/AFNetworkActivityIndicatorManager.h -------------------------------------------------------------------------------- /KtTableView/Pods/Headers/Private/AFNetworking/AFNetworkReachabilityManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFNetworkReachabilityManager.h -------------------------------------------------------------------------------- /KtTableView/Pods/Headers/Private/AFNetworking/AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFNetworking.h -------------------------------------------------------------------------------- /KtTableView/Pods/Headers/Private/AFNetworking/AFSecurityPolicy.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFSecurityPolicy.h -------------------------------------------------------------------------------- /KtTableView/Pods/Headers/Private/AFNetworking/AFURLRequestSerialization.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFURLRequestSerialization.h -------------------------------------------------------------------------------- /KtTableView/Pods/Headers/Private/AFNetworking/AFURLResponseSerialization.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFURLResponseSerialization.h -------------------------------------------------------------------------------- /KtTableView/Pods/Headers/Private/AFNetworking/AFURLSessionManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFURLSessionManager.h -------------------------------------------------------------------------------- /KtTableView/Pods/Headers/Private/AFNetworking/UIActivityIndicatorView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIActivityIndicatorView+AFNetworking.h -------------------------------------------------------------------------------- /KtTableView/Pods/Headers/Private/AFNetworking/UIButton+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIButton+AFNetworking.h -------------------------------------------------------------------------------- /KtTableView/Pods/Headers/Private/AFNetworking/UIImage+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIImage+AFNetworking.h -------------------------------------------------------------------------------- /KtTableView/Pods/Headers/Private/AFNetworking/UIImageView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIImageView+AFNetworking.h -------------------------------------------------------------------------------- /KtTableView/Pods/Headers/Private/AFNetworking/UIKit+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIKit+AFNetworking.h -------------------------------------------------------------------------------- /KtTableView/Pods/Headers/Private/AFNetworking/UIProgressView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIProgressView+AFNetworking.h -------------------------------------------------------------------------------- /KtTableView/Pods/Headers/Private/AFNetworking/UIRefreshControl+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIRefreshControl+AFNetworking.h -------------------------------------------------------------------------------- /KtTableView/Pods/Headers/Private/AFNetworking/UIWebView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIWebView+AFNetworking.h -------------------------------------------------------------------------------- /KtTableView/Pods/Headers/Private/MJRefresh/MJRefresh.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/MJRefresh.h -------------------------------------------------------------------------------- /KtTableView/Pods/Headers/Private/MJRefresh/MJRefreshAutoFooter.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Base/MJRefreshAutoFooter.h -------------------------------------------------------------------------------- /KtTableView/Pods/Headers/Private/MJRefresh/MJRefreshAutoGifFooter.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Custom/Footer/Auto/MJRefreshAutoGifFooter.h -------------------------------------------------------------------------------- /KtTableView/Pods/Headers/Private/MJRefresh/MJRefreshAutoNormalFooter.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Custom/Footer/Auto/MJRefreshAutoNormalFooter.h -------------------------------------------------------------------------------- /KtTableView/Pods/Headers/Private/MJRefresh/MJRefreshAutoStateFooter.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Custom/Footer/Auto/MJRefreshAutoStateFooter.h -------------------------------------------------------------------------------- /KtTableView/Pods/Headers/Private/MJRefresh/MJRefreshBackFooter.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Base/MJRefreshBackFooter.h -------------------------------------------------------------------------------- /KtTableView/Pods/Headers/Private/MJRefresh/MJRefreshBackGifFooter.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Custom/Footer/Back/MJRefreshBackGifFooter.h -------------------------------------------------------------------------------- /KtTableView/Pods/Headers/Private/MJRefresh/MJRefreshBackNormalFooter.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Custom/Footer/Back/MJRefreshBackNormalFooter.h -------------------------------------------------------------------------------- /KtTableView/Pods/Headers/Private/MJRefresh/MJRefreshBackStateFooter.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Custom/Footer/Back/MJRefreshBackStateFooter.h -------------------------------------------------------------------------------- /KtTableView/Pods/Headers/Private/MJRefresh/MJRefreshComponent.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Base/MJRefreshComponent.h -------------------------------------------------------------------------------- /KtTableView/Pods/Headers/Private/MJRefresh/MJRefreshConst.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/MJRefreshConst.h -------------------------------------------------------------------------------- /KtTableView/Pods/Headers/Private/MJRefresh/MJRefreshFooter.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Base/MJRefreshFooter.h -------------------------------------------------------------------------------- /KtTableView/Pods/Headers/Private/MJRefresh/MJRefreshGifHeader.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Custom/Header/MJRefreshGifHeader.h -------------------------------------------------------------------------------- /KtTableView/Pods/Headers/Private/MJRefresh/MJRefreshHeader.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Base/MJRefreshHeader.h -------------------------------------------------------------------------------- /KtTableView/Pods/Headers/Private/MJRefresh/MJRefreshNormalHeader.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Custom/Header/MJRefreshNormalHeader.h -------------------------------------------------------------------------------- /KtTableView/Pods/Headers/Private/MJRefresh/MJRefreshStateHeader.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Custom/Header/MJRefreshStateHeader.h -------------------------------------------------------------------------------- /KtTableView/Pods/Headers/Private/MJRefresh/UIScrollView+MJExtension.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/UIScrollView+MJExtension.h -------------------------------------------------------------------------------- /KtTableView/Pods/Headers/Private/MJRefresh/UIScrollView+MJRefresh.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/UIScrollView+MJRefresh.h -------------------------------------------------------------------------------- /KtTableView/Pods/Headers/Private/MJRefresh/UIView+MJExtension.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/UIView+MJExtension.h -------------------------------------------------------------------------------- /KtTableView/Pods/Headers/Public/AFNetworking/AFAutoPurgingImageCache.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/AFAutoPurgingImageCache.h -------------------------------------------------------------------------------- /KtTableView/Pods/Headers/Public/AFNetworking/AFHTTPSessionManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFHTTPSessionManager.h -------------------------------------------------------------------------------- /KtTableView/Pods/Headers/Public/AFNetworking/AFImageDownloader.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/AFImageDownloader.h -------------------------------------------------------------------------------- /KtTableView/Pods/Headers/Public/AFNetworking/AFNetworkActivityIndicatorManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/AFNetworkActivityIndicatorManager.h -------------------------------------------------------------------------------- /KtTableView/Pods/Headers/Public/AFNetworking/AFNetworkReachabilityManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFNetworkReachabilityManager.h -------------------------------------------------------------------------------- /KtTableView/Pods/Headers/Public/AFNetworking/AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFNetworking.h -------------------------------------------------------------------------------- /KtTableView/Pods/Headers/Public/AFNetworking/AFSecurityPolicy.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFSecurityPolicy.h -------------------------------------------------------------------------------- /KtTableView/Pods/Headers/Public/AFNetworking/AFURLRequestSerialization.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFURLRequestSerialization.h -------------------------------------------------------------------------------- /KtTableView/Pods/Headers/Public/AFNetworking/AFURLResponseSerialization.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFURLResponseSerialization.h -------------------------------------------------------------------------------- /KtTableView/Pods/Headers/Public/AFNetworking/AFURLSessionManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFURLSessionManager.h -------------------------------------------------------------------------------- /KtTableView/Pods/Headers/Public/AFNetworking/UIActivityIndicatorView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIActivityIndicatorView+AFNetworking.h -------------------------------------------------------------------------------- /KtTableView/Pods/Headers/Public/AFNetworking/UIButton+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIButton+AFNetworking.h -------------------------------------------------------------------------------- /KtTableView/Pods/Headers/Public/AFNetworking/UIImage+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIImage+AFNetworking.h -------------------------------------------------------------------------------- /KtTableView/Pods/Headers/Public/AFNetworking/UIImageView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIImageView+AFNetworking.h -------------------------------------------------------------------------------- /KtTableView/Pods/Headers/Public/AFNetworking/UIKit+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIKit+AFNetworking.h -------------------------------------------------------------------------------- /KtTableView/Pods/Headers/Public/AFNetworking/UIProgressView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIProgressView+AFNetworking.h -------------------------------------------------------------------------------- /KtTableView/Pods/Headers/Public/AFNetworking/UIRefreshControl+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIRefreshControl+AFNetworking.h -------------------------------------------------------------------------------- /KtTableView/Pods/Headers/Public/AFNetworking/UIWebView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIWebView+AFNetworking.h -------------------------------------------------------------------------------- /KtTableView/Pods/Headers/Public/MJRefresh/MJRefresh.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/MJRefresh.h -------------------------------------------------------------------------------- /KtTableView/Pods/Headers/Public/MJRefresh/MJRefreshAutoFooter.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Base/MJRefreshAutoFooter.h -------------------------------------------------------------------------------- /KtTableView/Pods/Headers/Public/MJRefresh/MJRefreshAutoGifFooter.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Custom/Footer/Auto/MJRefreshAutoGifFooter.h -------------------------------------------------------------------------------- /KtTableView/Pods/Headers/Public/MJRefresh/MJRefreshAutoNormalFooter.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Custom/Footer/Auto/MJRefreshAutoNormalFooter.h -------------------------------------------------------------------------------- /KtTableView/Pods/Headers/Public/MJRefresh/MJRefreshAutoStateFooter.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Custom/Footer/Auto/MJRefreshAutoStateFooter.h -------------------------------------------------------------------------------- /KtTableView/Pods/Headers/Public/MJRefresh/MJRefreshBackFooter.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Base/MJRefreshBackFooter.h -------------------------------------------------------------------------------- /KtTableView/Pods/Headers/Public/MJRefresh/MJRefreshBackGifFooter.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Custom/Footer/Back/MJRefreshBackGifFooter.h -------------------------------------------------------------------------------- /KtTableView/Pods/Headers/Public/MJRefresh/MJRefreshBackNormalFooter.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Custom/Footer/Back/MJRefreshBackNormalFooter.h -------------------------------------------------------------------------------- /KtTableView/Pods/Headers/Public/MJRefresh/MJRefreshBackStateFooter.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Custom/Footer/Back/MJRefreshBackStateFooter.h -------------------------------------------------------------------------------- /KtTableView/Pods/Headers/Public/MJRefresh/MJRefreshComponent.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Base/MJRefreshComponent.h -------------------------------------------------------------------------------- /KtTableView/Pods/Headers/Public/MJRefresh/MJRefreshConst.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/MJRefreshConst.h -------------------------------------------------------------------------------- /KtTableView/Pods/Headers/Public/MJRefresh/MJRefreshFooter.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Base/MJRefreshFooter.h -------------------------------------------------------------------------------- /KtTableView/Pods/Headers/Public/MJRefresh/MJRefreshGifHeader.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Custom/Header/MJRefreshGifHeader.h -------------------------------------------------------------------------------- /KtTableView/Pods/Headers/Public/MJRefresh/MJRefreshHeader.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Base/MJRefreshHeader.h -------------------------------------------------------------------------------- /KtTableView/Pods/Headers/Public/MJRefresh/MJRefreshNormalHeader.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Custom/Header/MJRefreshNormalHeader.h -------------------------------------------------------------------------------- /KtTableView/Pods/Headers/Public/MJRefresh/MJRefreshStateHeader.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Custom/Header/MJRefreshStateHeader.h -------------------------------------------------------------------------------- /KtTableView/Pods/Headers/Public/MJRefresh/UIScrollView+MJExtension.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/UIScrollView+MJExtension.h -------------------------------------------------------------------------------- /KtTableView/Pods/Headers/Public/MJRefresh/UIScrollView+MJRefresh.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/UIScrollView+MJRefresh.h -------------------------------------------------------------------------------- /KtTableView/Pods/Headers/Public/MJRefresh/UIView+MJExtension.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/UIView+MJExtension.h -------------------------------------------------------------------------------- /KtTableView/Pods/MJRefresh/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/KtTableView/Pods/MJRefresh/LICENSE -------------------------------------------------------------------------------- /KtTableView/Pods/MJRefresh/MJRefresh/Base/MJRefreshAutoFooter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/KtTableView/Pods/MJRefresh/MJRefresh/Base/MJRefreshAutoFooter.h -------------------------------------------------------------------------------- /KtTableView/Pods/MJRefresh/MJRefresh/Base/MJRefreshAutoFooter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/KtTableView/Pods/MJRefresh/MJRefresh/Base/MJRefreshAutoFooter.m -------------------------------------------------------------------------------- /KtTableView/Pods/MJRefresh/MJRefresh/Base/MJRefreshBackFooter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/KtTableView/Pods/MJRefresh/MJRefresh/Base/MJRefreshBackFooter.h -------------------------------------------------------------------------------- /KtTableView/Pods/MJRefresh/MJRefresh/Base/MJRefreshBackFooter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/KtTableView/Pods/MJRefresh/MJRefresh/Base/MJRefreshBackFooter.m -------------------------------------------------------------------------------- /KtTableView/Pods/MJRefresh/MJRefresh/Base/MJRefreshComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/KtTableView/Pods/MJRefresh/MJRefresh/Base/MJRefreshComponent.h -------------------------------------------------------------------------------- /KtTableView/Pods/MJRefresh/MJRefresh/Base/MJRefreshComponent.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/KtTableView/Pods/MJRefresh/MJRefresh/Base/MJRefreshComponent.m -------------------------------------------------------------------------------- /KtTableView/Pods/MJRefresh/MJRefresh/Base/MJRefreshFooter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/KtTableView/Pods/MJRefresh/MJRefresh/Base/MJRefreshFooter.h -------------------------------------------------------------------------------- /KtTableView/Pods/MJRefresh/MJRefresh/Base/MJRefreshFooter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/KtTableView/Pods/MJRefresh/MJRefresh/Base/MJRefreshFooter.m -------------------------------------------------------------------------------- /KtTableView/Pods/MJRefresh/MJRefresh/Base/MJRefreshHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/KtTableView/Pods/MJRefresh/MJRefresh/Base/MJRefreshHeader.h -------------------------------------------------------------------------------- /KtTableView/Pods/MJRefresh/MJRefresh/Base/MJRefreshHeader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/KtTableView/Pods/MJRefresh/MJRefresh/Base/MJRefreshHeader.m -------------------------------------------------------------------------------- /KtTableView/Pods/MJRefresh/MJRefresh/Custom/Footer/Auto/MJRefreshAutoGifFooter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/KtTableView/Pods/MJRefresh/MJRefresh/Custom/Footer/Auto/MJRefreshAutoGifFooter.h -------------------------------------------------------------------------------- /KtTableView/Pods/MJRefresh/MJRefresh/Custom/Footer/Auto/MJRefreshAutoGifFooter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/KtTableView/Pods/MJRefresh/MJRefresh/Custom/Footer/Auto/MJRefreshAutoGifFooter.m -------------------------------------------------------------------------------- /KtTableView/Pods/MJRefresh/MJRefresh/Custom/Footer/Auto/MJRefreshAutoNormalFooter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/KtTableView/Pods/MJRefresh/MJRefresh/Custom/Footer/Auto/MJRefreshAutoNormalFooter.h -------------------------------------------------------------------------------- /KtTableView/Pods/MJRefresh/MJRefresh/Custom/Footer/Auto/MJRefreshAutoNormalFooter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/KtTableView/Pods/MJRefresh/MJRefresh/Custom/Footer/Auto/MJRefreshAutoNormalFooter.m -------------------------------------------------------------------------------- /KtTableView/Pods/MJRefresh/MJRefresh/Custom/Footer/Auto/MJRefreshAutoStateFooter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/KtTableView/Pods/MJRefresh/MJRefresh/Custom/Footer/Auto/MJRefreshAutoStateFooter.h -------------------------------------------------------------------------------- /KtTableView/Pods/MJRefresh/MJRefresh/Custom/Footer/Auto/MJRefreshAutoStateFooter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/KtTableView/Pods/MJRefresh/MJRefresh/Custom/Footer/Auto/MJRefreshAutoStateFooter.m -------------------------------------------------------------------------------- /KtTableView/Pods/MJRefresh/MJRefresh/Custom/Footer/Back/MJRefreshBackGifFooter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/KtTableView/Pods/MJRefresh/MJRefresh/Custom/Footer/Back/MJRefreshBackGifFooter.h -------------------------------------------------------------------------------- /KtTableView/Pods/MJRefresh/MJRefresh/Custom/Footer/Back/MJRefreshBackGifFooter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/KtTableView/Pods/MJRefresh/MJRefresh/Custom/Footer/Back/MJRefreshBackGifFooter.m -------------------------------------------------------------------------------- /KtTableView/Pods/MJRefresh/MJRefresh/Custom/Footer/Back/MJRefreshBackNormalFooter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/KtTableView/Pods/MJRefresh/MJRefresh/Custom/Footer/Back/MJRefreshBackNormalFooter.h -------------------------------------------------------------------------------- /KtTableView/Pods/MJRefresh/MJRefresh/Custom/Footer/Back/MJRefreshBackNormalFooter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/KtTableView/Pods/MJRefresh/MJRefresh/Custom/Footer/Back/MJRefreshBackNormalFooter.m -------------------------------------------------------------------------------- /KtTableView/Pods/MJRefresh/MJRefresh/Custom/Footer/Back/MJRefreshBackStateFooter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/KtTableView/Pods/MJRefresh/MJRefresh/Custom/Footer/Back/MJRefreshBackStateFooter.h -------------------------------------------------------------------------------- /KtTableView/Pods/MJRefresh/MJRefresh/Custom/Footer/Back/MJRefreshBackStateFooter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/KtTableView/Pods/MJRefresh/MJRefresh/Custom/Footer/Back/MJRefreshBackStateFooter.m -------------------------------------------------------------------------------- /KtTableView/Pods/MJRefresh/MJRefresh/Custom/Header/MJRefreshGifHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/KtTableView/Pods/MJRefresh/MJRefresh/Custom/Header/MJRefreshGifHeader.h -------------------------------------------------------------------------------- /KtTableView/Pods/MJRefresh/MJRefresh/Custom/Header/MJRefreshGifHeader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/KtTableView/Pods/MJRefresh/MJRefresh/Custom/Header/MJRefreshGifHeader.m -------------------------------------------------------------------------------- /KtTableView/Pods/MJRefresh/MJRefresh/Custom/Header/MJRefreshNormalHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/KtTableView/Pods/MJRefresh/MJRefresh/Custom/Header/MJRefreshNormalHeader.h -------------------------------------------------------------------------------- /KtTableView/Pods/MJRefresh/MJRefresh/Custom/Header/MJRefreshNormalHeader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/KtTableView/Pods/MJRefresh/MJRefresh/Custom/Header/MJRefreshNormalHeader.m -------------------------------------------------------------------------------- /KtTableView/Pods/MJRefresh/MJRefresh/Custom/Header/MJRefreshStateHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/KtTableView/Pods/MJRefresh/MJRefresh/Custom/Header/MJRefreshStateHeader.h -------------------------------------------------------------------------------- /KtTableView/Pods/MJRefresh/MJRefresh/Custom/Header/MJRefreshStateHeader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/KtTableView/Pods/MJRefresh/MJRefresh/Custom/Header/MJRefreshStateHeader.m -------------------------------------------------------------------------------- /KtTableView/Pods/MJRefresh/MJRefresh/MJRefresh.bundle/arrow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/KtTableView/Pods/MJRefresh/MJRefresh/MJRefresh.bundle/arrow@2x.png -------------------------------------------------------------------------------- /KtTableView/Pods/MJRefresh/MJRefresh/MJRefresh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/KtTableView/Pods/MJRefresh/MJRefresh/MJRefresh.h -------------------------------------------------------------------------------- /KtTableView/Pods/MJRefresh/MJRefresh/MJRefreshConst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/KtTableView/Pods/MJRefresh/MJRefresh/MJRefreshConst.h -------------------------------------------------------------------------------- /KtTableView/Pods/MJRefresh/MJRefresh/MJRefreshConst.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/KtTableView/Pods/MJRefresh/MJRefresh/MJRefreshConst.m -------------------------------------------------------------------------------- /KtTableView/Pods/MJRefresh/MJRefresh/UIScrollView+MJExtension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/KtTableView/Pods/MJRefresh/MJRefresh/UIScrollView+MJExtension.h -------------------------------------------------------------------------------- /KtTableView/Pods/MJRefresh/MJRefresh/UIScrollView+MJExtension.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/KtTableView/Pods/MJRefresh/MJRefresh/UIScrollView+MJExtension.m -------------------------------------------------------------------------------- /KtTableView/Pods/MJRefresh/MJRefresh/UIScrollView+MJRefresh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/KtTableView/Pods/MJRefresh/MJRefresh/UIScrollView+MJRefresh.h -------------------------------------------------------------------------------- /KtTableView/Pods/MJRefresh/MJRefresh/UIScrollView+MJRefresh.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/KtTableView/Pods/MJRefresh/MJRefresh/UIScrollView+MJRefresh.m -------------------------------------------------------------------------------- /KtTableView/Pods/MJRefresh/MJRefresh/UIView+MJExtension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/KtTableView/Pods/MJRefresh/MJRefresh/UIView+MJExtension.h -------------------------------------------------------------------------------- /KtTableView/Pods/MJRefresh/MJRefresh/UIView+MJExtension.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/KtTableView/Pods/MJRefresh/MJRefresh/UIView+MJExtension.m -------------------------------------------------------------------------------- /KtTableView/Pods/MJRefresh/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/KtTableView/Pods/MJRefresh/README.md -------------------------------------------------------------------------------- /KtTableView/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/KtTableView/Pods/Manifest.lock -------------------------------------------------------------------------------- /KtTableView/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/KtTableView/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /KtTableView/Pods/Target Support Files/AFNetworking/AFNetworking-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/KtTableView/Pods/Target Support Files/AFNetworking/AFNetworking-dummy.m -------------------------------------------------------------------------------- /KtTableView/Pods/Target Support Files/AFNetworking/AFNetworking-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/KtTableView/Pods/Target Support Files/AFNetworking/AFNetworking-prefix.pch -------------------------------------------------------------------------------- /KtTableView/Pods/Target Support Files/AFNetworking/AFNetworking.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/KtTableView/Pods/Target Support Files/AFNetworking/AFNetworking.xcconfig -------------------------------------------------------------------------------- /KtTableView/Pods/Target Support Files/MJRefresh/MJRefresh-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/KtTableView/Pods/Target Support Files/MJRefresh/MJRefresh-dummy.m -------------------------------------------------------------------------------- /KtTableView/Pods/Target Support Files/MJRefresh/MJRefresh-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/KtTableView/Pods/Target Support Files/MJRefresh/MJRefresh-prefix.pch -------------------------------------------------------------------------------- /KtTableView/Pods/Target Support Files/MJRefresh/MJRefresh.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/KtTableView/Pods/Target Support Files/MJRefresh/MJRefresh.xcconfig -------------------------------------------------------------------------------- /KtTableView/Pods/Target Support Files/Pods/Pods-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/KtTableView/Pods/Target Support Files/Pods/Pods-acknowledgements.markdown -------------------------------------------------------------------------------- /KtTableView/Pods/Target Support Files/Pods/Pods-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/KtTableView/Pods/Target Support Files/Pods/Pods-acknowledgements.plist -------------------------------------------------------------------------------- /KtTableView/Pods/Target Support Files/Pods/Pods-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/KtTableView/Pods/Target Support Files/Pods/Pods-dummy.m -------------------------------------------------------------------------------- /KtTableView/Pods/Target Support Files/Pods/Pods-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/KtTableView/Pods/Target Support Files/Pods/Pods-frameworks.sh -------------------------------------------------------------------------------- /KtTableView/Pods/Target Support Files/Pods/Pods-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/KtTableView/Pods/Target Support Files/Pods/Pods-resources.sh -------------------------------------------------------------------------------- /KtTableView/Pods/Target Support Files/Pods/Pods.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/KtTableView/Pods/Target Support Files/Pods/Pods.debug.xcconfig -------------------------------------------------------------------------------- /KtTableView/Pods/Target Support Files/Pods/Pods.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/KtTableView/Pods/Target Support Files/Pods/Pods.release.xcconfig -------------------------------------------------------------------------------- /KtTableView/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/KtTableView/README.md -------------------------------------------------------------------------------- /NodeRequireTest/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/NodeRequireTest/.vscode/launch.json -------------------------------------------------------------------------------- /NodeRequireTest/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/NodeRequireTest/README.md -------------------------------------------------------------------------------- /NodeRequireTest/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/NodeRequireTest/jsconfig.json -------------------------------------------------------------------------------- /NodeRequireTest/main/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/NodeRequireTest/main/index.js -------------------------------------------------------------------------------- /NodeRequireTest/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/NodeRequireTest/package.json -------------------------------------------------------------------------------- /NodeRequireTest/utils/utils.js: -------------------------------------------------------------------------------- 1 | 2 | module.exports = { 3 | key:' value' 4 | } -------------------------------------------------------------------------------- /ParallelMap/ParallelMap.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/ParallelMap/ParallelMap.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ParallelMap/ParallelMap/extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/ParallelMap/ParallelMap/extension.swift -------------------------------------------------------------------------------- /ParallelMap/ParallelMap/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/ParallelMap/ParallelMap/main.swift -------------------------------------------------------------------------------- /ParallelMap/ParallelMap/test.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/ParallelMap/ParallelMap/test.swift -------------------------------------------------------------------------------- /ParallelMap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/ParallelMap/README.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/README.md -------------------------------------------------------------------------------- /RunloopAndThread/RunloopAndThread.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/RunloopAndThread/RunloopAndThread.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /RunloopAndThread/RunloopAndThread/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/RunloopAndThread/RunloopAndThread/AppDelegate.h -------------------------------------------------------------------------------- /RunloopAndThread/RunloopAndThread/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/RunloopAndThread/RunloopAndThread/AppDelegate.m -------------------------------------------------------------------------------- /RunloopAndThread/RunloopAndThread/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/RunloopAndThread/RunloopAndThread/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /RunloopAndThread/RunloopAndThread/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/RunloopAndThread/RunloopAndThread/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /RunloopAndThread/RunloopAndThread/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/RunloopAndThread/RunloopAndThread/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /RunloopAndThread/RunloopAndThread/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/RunloopAndThread/RunloopAndThread/Info.plist -------------------------------------------------------------------------------- /RunloopAndThread/RunloopAndThread/NSObject+DeallocBlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/RunloopAndThread/RunloopAndThread/NSObject+DeallocBlock.h -------------------------------------------------------------------------------- /RunloopAndThread/RunloopAndThread/NSObject+DeallocBlock.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/RunloopAndThread/RunloopAndThread/NSObject+DeallocBlock.m -------------------------------------------------------------------------------- /RunloopAndThread/RunloopAndThread/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/RunloopAndThread/RunloopAndThread/ViewController.h -------------------------------------------------------------------------------- /RunloopAndThread/RunloopAndThread/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/RunloopAndThread/RunloopAndThread/ViewController.m -------------------------------------------------------------------------------- /RunloopAndThread/RunloopAndThread/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/RunloopAndThread/RunloopAndThread/main.m -------------------------------------------------------------------------------- /Streamable/Streamable.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/Streamable/Streamable.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Streamable/Streamable/Debug.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/Streamable/Streamable/Debug.swift -------------------------------------------------------------------------------- /Streamable/Streamable/Print.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/Streamable/Streamable/Print.swift -------------------------------------------------------------------------------- /Streamable/Streamable/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/Streamable/Streamable/main.swift -------------------------------------------------------------------------------- /SwiftMysterious/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/SwiftMysterious/README.md -------------------------------------------------------------------------------- /SwiftMysterious/SwiftMysterious.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/SwiftMysterious/SwiftMysterious.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SwiftMysterious/SwiftMysterious/InlineLazy.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/SwiftMysterious/SwiftMysterious/InlineLazy.swift -------------------------------------------------------------------------------- /SwiftMysterious/SwiftMysterious/LoopLabel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/SwiftMysterious/SwiftMysterious/LoopLabel.swift -------------------------------------------------------------------------------- /SwiftMysterious/SwiftMysterious/SpecialLiteral.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/SwiftMysterious/SwiftMysterious/SpecialLiteral.swift -------------------------------------------------------------------------------- /SwiftMysterious/SwiftMysterious/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/SwiftMysterious/SwiftMysterious/main.swift -------------------------------------------------------------------------------- /SwiftTips/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/SwiftTips/README.md -------------------------------------------------------------------------------- /SwiftTips/SwiftTips.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/SwiftTips/SwiftTips.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SwiftTips/SwiftTips/Breakpoint.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/SwiftTips/SwiftTips/Breakpoint.swift -------------------------------------------------------------------------------- /SwiftTips/SwiftTips/PrivateSet.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/SwiftTips/SwiftTips/PrivateSet.swift -------------------------------------------------------------------------------- /SwiftTips/SwiftTips/ReuseIdentifier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/SwiftTips/SwiftTips/ReuseIdentifier.swift -------------------------------------------------------------------------------- /SwiftTips/SwiftTips/Semicolon.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/SwiftTips/SwiftTips/Semicolon.swift -------------------------------------------------------------------------------- /SwiftTips/SwiftTips/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/SwiftTips/SwiftTips/main.swift -------------------------------------------------------------------------------- /load/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/load/README.md -------------------------------------------------------------------------------- /load/load.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/load/load.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /load/load/Child+load.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/load/load/Child+load.h -------------------------------------------------------------------------------- /load/load/Child+load.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/load/load/Child+load.m -------------------------------------------------------------------------------- /load/load/Child.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/load/load/Child.h -------------------------------------------------------------------------------- /load/load/Child.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/load/load/Child.m -------------------------------------------------------------------------------- /load/load/Other.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/load/load/Other.h -------------------------------------------------------------------------------- /load/load/Other.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/load/load/Other.m -------------------------------------------------------------------------------- /load/load/Parent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/load/load/Parent.h -------------------------------------------------------------------------------- /load/load/Parent.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/load/load/Parent.m -------------------------------------------------------------------------------- /load/load/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/load/load/main.m -------------------------------------------------------------------------------- /runtime/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/runtime/README.md -------------------------------------------------------------------------------- /runtime/runtime.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/runtime/runtime.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /runtime/runtime/MethodForwardTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/runtime/runtime/MethodForwardTest.h -------------------------------------------------------------------------------- /runtime/runtime/MethodForwardTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/runtime/runtime/MethodForwardTest.m -------------------------------------------------------------------------------- /runtime/runtime/MethodSwizzlingTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/runtime/runtime/MethodSwizzlingTest.h -------------------------------------------------------------------------------- /runtime/runtime/MethodSwizzlingTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/runtime/runtime/MethodSwizzlingTest.m -------------------------------------------------------------------------------- /runtime/runtime/NSString+MyImplementation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/runtime/runtime/NSString+MyImplementation.h -------------------------------------------------------------------------------- /runtime/runtime/NSString+MyImplementation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/runtime/runtime/NSString+MyImplementation.m -------------------------------------------------------------------------------- /runtime/runtime/Replacement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/runtime/runtime/Replacement.h -------------------------------------------------------------------------------- /runtime/runtime/Replacement.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/runtime/runtime/Replacement.m -------------------------------------------------------------------------------- /runtime/runtime/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/MySampleCode/HEAD/runtime/runtime/main.m --------------------------------------------------------------------------------