├── .DS_Store ├── .gitignore ├── LICENSE ├── README.md └── SwiftStudy ├── .DS_Store ├── Podfile ├── Podfile.lock ├── Pods ├── Alamofire │ ├── LICENSE │ ├── README.md │ └── Source │ │ ├── AFError.swift │ │ ├── Alamofire.swift │ │ ├── DispatchQueue+Alamofire.swift │ │ ├── MultipartFormData.swift │ │ ├── NetworkReachabilityManager.swift │ │ ├── Notifications.swift │ │ ├── ParameterEncoding.swift │ │ ├── Request.swift │ │ ├── Response.swift │ │ ├── ResponseSerialization.swift │ │ ├── Result.swift │ │ ├── ServerTrustPolicy.swift │ │ ├── SessionDelegate.swift │ │ ├── SessionManager.swift │ │ ├── TaskDelegate.swift │ │ ├── Timeline.swift │ │ └── Validation.swift ├── AlamofireImage │ ├── LICENSE │ ├── README.md │ └── Source │ │ ├── AFIError.swift │ │ ├── Image.swift │ │ ├── ImageCache.swift │ │ ├── ImageDownloader.swift │ │ ├── ImageFilter.swift │ │ ├── Request+AlamofireImage.swift │ │ ├── UIButton+AlamofireImage.swift │ │ ├── UIImage+AlamofireImage.swift │ │ └── UIImageView+AlamofireImage.swift ├── GDPerformanceView-Swift │ ├── GDPerformanceView-Swift │ │ └── GDPerformanceMonitoring │ │ │ ├── LinkedFramesList.swift │ │ │ ├── MarginLabel.swift │ │ │ ├── PerformanceMonitor.swift │ │ │ ├── PerformanceView.swift │ │ │ ├── PerformanceСalculator.swift │ │ │ ├── Protocols.swift │ │ │ └── WindowViewController.swift │ ├── LICENSE │ └── README.md ├── HandyJSON │ ├── LICENSE │ ├── README.md │ └── Source │ │ ├── AnyExtensions.swift │ │ ├── BuiltInBasicType.swift │ │ ├── BuiltInBridgeType.swift │ │ ├── CBridge.swift │ │ ├── Configuration.swift │ │ ├── ContextDescriptorType.swift │ │ ├── CustomDateFormatTransform.swift │ │ ├── DataTransform.swift │ │ ├── DateFormatterTransform.swift │ │ ├── DateTransform.swift │ │ ├── Deserializer.swift │ │ ├── EnumTransform.swift │ │ ├── EnumType.swift │ │ ├── Export.swift │ │ ├── ExtendCustomBasicType.swift │ │ ├── ExtendCustomModelType.swift │ │ ├── FieldDescriptor.swift │ │ ├── HandyJSON.h │ │ ├── HelpingMapper.swift │ │ ├── HexColorTransform.swift │ │ ├── ISO8601DateTransform.swift │ │ ├── Logger.swift │ │ ├── MangledName.swift │ │ ├── Measuable.swift │ │ ├── Metadata.swift │ │ ├── NSDecimalNumberTransform.swift │ │ ├── OtherExtension.swift │ │ ├── PointerType.swift │ │ ├── Properties.swift │ │ ├── PropertyInfo.swift │ │ ├── ReflectionHelper.swift │ │ ├── Serializer.swift │ │ ├── TransformOf.swift │ │ ├── TransformType.swift │ │ ├── Transformable.swift │ │ └── URLTransform.swift ├── Kingfisher │ ├── LICENSE │ ├── README.md │ └── Sources │ │ ├── Cache │ │ ├── CacheSerializer.swift │ │ ├── DiskStorage.swift │ │ ├── FormatIndicatedCacheSerializer.swift │ │ ├── ImageCache.swift │ │ ├── MemoryStorage.swift │ │ └── Storage.swift │ │ ├── Extensions │ │ ├── ImageView+Kingfisher.swift │ │ └── UIButton+Kingfisher.swift │ │ ├── General │ │ ├── Deprecated.swift │ │ ├── ImageSource │ │ │ ├── ImageDataProvider.swift │ │ │ ├── Resource.swift │ │ │ └── Source.swift │ │ ├── Kingfisher.swift │ │ ├── KingfisherError.swift │ │ ├── KingfisherManager.swift │ │ └── KingfisherOptionsInfo.swift │ │ ├── Image │ │ ├── Filter.swift │ │ ├── GIFAnimatedImage.swift │ │ ├── Image.swift │ │ ├── ImageDrawing.swift │ │ ├── ImageFormat.swift │ │ ├── ImageProcessor.swift │ │ ├── ImageProgressive.swift │ │ ├── ImageTransition.swift │ │ └── Placeholder.swift │ │ ├── Kingfisher.h │ │ ├── Networking │ │ ├── AuthenticationChallengeResponsable.swift │ │ ├── ImageDataProcessor.swift │ │ ├── ImageDownloader.swift │ │ ├── ImageDownloaderDelegate.swift │ │ ├── ImageModifier.swift │ │ ├── ImagePrefetcher.swift │ │ ├── RedirectHandler.swift │ │ ├── RequestModifier.swift │ │ ├── SessionDataTask.swift │ │ └── SessionDelegate.swift │ │ ├── Utility │ │ ├── Box.swift │ │ ├── CallbackQueue.swift │ │ ├── Delegate.swift │ │ ├── ExtensionHelpers.swift │ │ ├── Result.swift │ │ ├── Runtime.swift │ │ ├── SizeExtensions.swift │ │ └── String+MD5.swift │ │ └── Views │ │ ├── AnimatedImageView.swift │ │ └── Indicator.swift ├── Manifest.lock ├── Pods.xcodeproj │ └── project.pbxproj ├── SnapKit │ ├── LICENSE │ ├── README.md │ └── Source │ │ ├── Constraint.swift │ │ ├── ConstraintAttributes.swift │ │ ├── ConstraintConfig.swift │ │ ├── ConstraintConstantTarget.swift │ │ ├── ConstraintDSL.swift │ │ ├── ConstraintDescription.swift │ │ ├── ConstraintInsetTarget.swift │ │ ├── ConstraintInsets.swift │ │ ├── ConstraintItem.swift │ │ ├── ConstraintLayoutGuide+Extensions.swift │ │ ├── ConstraintLayoutGuide.swift │ │ ├── ConstraintLayoutGuideDSL.swift │ │ ├── ConstraintLayoutSupport.swift │ │ ├── ConstraintLayoutSupportDSL.swift │ │ ├── ConstraintMaker.swift │ │ ├── ConstraintMakerEditable.swift │ │ ├── ConstraintMakerExtendable.swift │ │ ├── ConstraintMakerFinalizable.swift │ │ ├── ConstraintMakerPriortizable.swift │ │ ├── ConstraintMakerRelatable.swift │ │ ├── ConstraintMultiplierTarget.swift │ │ ├── ConstraintOffsetTarget.swift │ │ ├── ConstraintPriority.swift │ │ ├── ConstraintPriorityTarget.swift │ │ ├── ConstraintRelatableTarget.swift │ │ ├── ConstraintRelation.swift │ │ ├── ConstraintView+Extensions.swift │ │ ├── ConstraintView.swift │ │ ├── ConstraintViewDSL.swift │ │ ├── Debugging.swift │ │ ├── LayoutConstraint.swift │ │ ├── LayoutConstraintItem.swift │ │ ├── Typealiases.swift │ │ └── UILayoutSupport+Extensions.swift ├── Target Support Files │ ├── Alamofire │ │ ├── Alamofire-Info.plist │ │ ├── Alamofire-dummy.m │ │ ├── Alamofire-prefix.pch │ │ ├── Alamofire-umbrella.h │ │ ├── Alamofire.modulemap │ │ └── Alamofire.xcconfig │ ├── AlamofireImage │ │ ├── AlamofireImage-Info.plist │ │ ├── AlamofireImage-dummy.m │ │ ├── AlamofireImage-prefix.pch │ │ ├── AlamofireImage-umbrella.h │ │ ├── AlamofireImage.modulemap │ │ └── AlamofireImage.xcconfig │ ├── GDPerformanceView-Swift │ │ ├── GDPerformanceView-Swift-Info.plist │ │ ├── GDPerformanceView-Swift-dummy.m │ │ ├── GDPerformanceView-Swift-prefix.pch │ │ ├── GDPerformanceView-Swift-umbrella.h │ │ ├── GDPerformanceView-Swift.modulemap │ │ └── GDPerformanceView-Swift.xcconfig │ ├── HandyJSON │ │ ├── HandyJSON-Info.plist │ │ ├── HandyJSON-dummy.m │ │ ├── HandyJSON-prefix.pch │ │ ├── HandyJSON-umbrella.h │ │ ├── HandyJSON.modulemap │ │ └── HandyJSON.xcconfig │ ├── Kingfisher │ │ ├── Kingfisher-Info.plist │ │ ├── Kingfisher-dummy.m │ │ ├── Kingfisher-prefix.pch │ │ ├── Kingfisher-umbrella.h │ │ ├── Kingfisher.modulemap │ │ └── Kingfisher.xcconfig │ ├── Pods-SwiftStudy │ │ ├── Pods-SwiftStudy-Info.plist │ │ ├── Pods-SwiftStudy-acknowledgements.markdown │ │ ├── Pods-SwiftStudy-acknowledgements.plist │ │ ├── Pods-SwiftStudy-dummy.m │ │ ├── Pods-SwiftStudy-frameworks.sh │ │ ├── Pods-SwiftStudy-umbrella.h │ │ ├── Pods-SwiftStudy.debug.xcconfig │ │ ├── Pods-SwiftStudy.modulemap │ │ └── Pods-SwiftStudy.release.xcconfig │ ├── SnapKit │ │ ├── SnapKit-Info.plist │ │ ├── SnapKit-dummy.m │ │ ├── SnapKit-prefix.pch │ │ ├── SnapKit-umbrella.h │ │ ├── SnapKit.modulemap │ │ └── SnapKit.xcconfig │ └── WKWebView │ │ ├── WKWebView-Info.plist │ │ ├── WKWebView-dummy.m │ │ ├── WKWebView-prefix.pch │ │ ├── WKWebView-umbrella.h │ │ ├── WKWebView.modulemap │ │ └── WKWebView.xcconfig └── WKWebView │ ├── ChinaDailyForiPad │ └── WebView │ │ ├── SLPrefixHeader.pch │ │ ├── SLWebViewController.h │ │ └── SLWebViewController.m │ ├── LICENSE │ ├── README.md │ └── Resource │ ├── JStoOC.html │ ├── backbutton@2x.png │ ├── backbutton@3x.png │ ├── girl.png │ ├── webRefreshButton@2x.png │ └── webRefreshButton@3x.png ├── SwiftStudy.xcodeproj ├── project.pbxproj └── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ └── IDEWorkspaceChecks.plist ├── SwiftStudy.xcworkspace ├── contents.xcworkspacedata └── xcshareddata │ └── IDEWorkspaceChecks.plist ├── SwiftStudy ├── AppDelegate.swift ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Info.plist ├── Resource │ ├── Data.plist │ ├── photo@2x.png │ ├── placeholderImage.png │ ├── 爱你@2x.png │ └── 爱你@3x.png ├── SLNavigationController.swift ├── SLPictureBrowsingCell.swift ├── SLPictureBrowsingViewController.swift ├── SLPictureTransitionAnimation.swift ├── SLPictureZoomView.swift ├── SLPresenter.swift ├── SLTableViewCell.swift ├── SLWebViewController.swift └── ViewController.swift ├── SwiftStudyTests ├── Info.plist └── SwiftStudyTests.swift ├── SwiftStudyUITests ├── Info.plist └── SwiftStudyUITests.swift ├── 图集浏览效果.gif └── 富文本效果.gif /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/README.md -------------------------------------------------------------------------------- /SwiftStudy/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/.DS_Store -------------------------------------------------------------------------------- /SwiftStudy/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Podfile -------------------------------------------------------------------------------- /SwiftStudy/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Podfile.lock -------------------------------------------------------------------------------- /SwiftStudy/Pods/Alamofire/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/Alamofire/LICENSE -------------------------------------------------------------------------------- /SwiftStudy/Pods/Alamofire/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/Alamofire/README.md -------------------------------------------------------------------------------- /SwiftStudy/Pods/Alamofire/Source/AFError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/Alamofire/Source/AFError.swift -------------------------------------------------------------------------------- /SwiftStudy/Pods/Alamofire/Source/Alamofire.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/Alamofire/Source/Alamofire.swift -------------------------------------------------------------------------------- /SwiftStudy/Pods/Alamofire/Source/DispatchQueue+Alamofire.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/Alamofire/Source/DispatchQueue+Alamofire.swift -------------------------------------------------------------------------------- /SwiftStudy/Pods/Alamofire/Source/MultipartFormData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/Alamofire/Source/MultipartFormData.swift -------------------------------------------------------------------------------- /SwiftStudy/Pods/Alamofire/Source/NetworkReachabilityManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/Alamofire/Source/NetworkReachabilityManager.swift -------------------------------------------------------------------------------- /SwiftStudy/Pods/Alamofire/Source/Notifications.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/Alamofire/Source/Notifications.swift -------------------------------------------------------------------------------- /SwiftStudy/Pods/Alamofire/Source/ParameterEncoding.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/Alamofire/Source/ParameterEncoding.swift -------------------------------------------------------------------------------- /SwiftStudy/Pods/Alamofire/Source/Request.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/Alamofire/Source/Request.swift -------------------------------------------------------------------------------- /SwiftStudy/Pods/Alamofire/Source/Response.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/Alamofire/Source/Response.swift -------------------------------------------------------------------------------- /SwiftStudy/Pods/Alamofire/Source/ResponseSerialization.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/Alamofire/Source/ResponseSerialization.swift -------------------------------------------------------------------------------- /SwiftStudy/Pods/Alamofire/Source/Result.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/Alamofire/Source/Result.swift -------------------------------------------------------------------------------- /SwiftStudy/Pods/Alamofire/Source/ServerTrustPolicy.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/Alamofire/Source/ServerTrustPolicy.swift -------------------------------------------------------------------------------- /SwiftStudy/Pods/Alamofire/Source/SessionDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/Alamofire/Source/SessionDelegate.swift -------------------------------------------------------------------------------- /SwiftStudy/Pods/Alamofire/Source/SessionManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/Alamofire/Source/SessionManager.swift -------------------------------------------------------------------------------- /SwiftStudy/Pods/Alamofire/Source/TaskDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/Alamofire/Source/TaskDelegate.swift -------------------------------------------------------------------------------- /SwiftStudy/Pods/Alamofire/Source/Timeline.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/Alamofire/Source/Timeline.swift -------------------------------------------------------------------------------- /SwiftStudy/Pods/Alamofire/Source/Validation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/Alamofire/Source/Validation.swift -------------------------------------------------------------------------------- /SwiftStudy/Pods/AlamofireImage/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/AlamofireImage/LICENSE -------------------------------------------------------------------------------- /SwiftStudy/Pods/AlamofireImage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/AlamofireImage/README.md -------------------------------------------------------------------------------- /SwiftStudy/Pods/AlamofireImage/Source/AFIError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/AlamofireImage/Source/AFIError.swift -------------------------------------------------------------------------------- /SwiftStudy/Pods/AlamofireImage/Source/Image.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/AlamofireImage/Source/Image.swift -------------------------------------------------------------------------------- /SwiftStudy/Pods/AlamofireImage/Source/ImageCache.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/AlamofireImage/Source/ImageCache.swift -------------------------------------------------------------------------------- /SwiftStudy/Pods/AlamofireImage/Source/ImageDownloader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/AlamofireImage/Source/ImageDownloader.swift -------------------------------------------------------------------------------- /SwiftStudy/Pods/AlamofireImage/Source/ImageFilter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/AlamofireImage/Source/ImageFilter.swift -------------------------------------------------------------------------------- /SwiftStudy/Pods/AlamofireImage/Source/Request+AlamofireImage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/AlamofireImage/Source/Request+AlamofireImage.swift -------------------------------------------------------------------------------- /SwiftStudy/Pods/AlamofireImage/Source/UIButton+AlamofireImage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/AlamofireImage/Source/UIButton+AlamofireImage.swift -------------------------------------------------------------------------------- /SwiftStudy/Pods/AlamofireImage/Source/UIImage+AlamofireImage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/AlamofireImage/Source/UIImage+AlamofireImage.swift -------------------------------------------------------------------------------- /SwiftStudy/Pods/AlamofireImage/Source/UIImageView+AlamofireImage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/AlamofireImage/Source/UIImageView+AlamofireImage.swift -------------------------------------------------------------------------------- /SwiftStudy/Pods/GDPerformanceView-Swift/GDPerformanceView-Swift/GDPerformanceMonitoring/LinkedFramesList.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/GDPerformanceView-Swift/GDPerformanceView-Swift/GDPerformanceMonitoring/LinkedFramesList.swift -------------------------------------------------------------------------------- /SwiftStudy/Pods/GDPerformanceView-Swift/GDPerformanceView-Swift/GDPerformanceMonitoring/MarginLabel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/GDPerformanceView-Swift/GDPerformanceView-Swift/GDPerformanceMonitoring/MarginLabel.swift -------------------------------------------------------------------------------- /SwiftStudy/Pods/GDPerformanceView-Swift/GDPerformanceView-Swift/GDPerformanceMonitoring/PerformanceMonitor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/GDPerformanceView-Swift/GDPerformanceView-Swift/GDPerformanceMonitoring/PerformanceMonitor.swift -------------------------------------------------------------------------------- /SwiftStudy/Pods/GDPerformanceView-Swift/GDPerformanceView-Swift/GDPerformanceMonitoring/PerformanceView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/GDPerformanceView-Swift/GDPerformanceView-Swift/GDPerformanceMonitoring/PerformanceView.swift -------------------------------------------------------------------------------- /SwiftStudy/Pods/GDPerformanceView-Swift/GDPerformanceView-Swift/GDPerformanceMonitoring/PerformanceСalculator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/GDPerformanceView-Swift/GDPerformanceView-Swift/GDPerformanceMonitoring/PerformanceСalculator.swift -------------------------------------------------------------------------------- /SwiftStudy/Pods/GDPerformanceView-Swift/GDPerformanceView-Swift/GDPerformanceMonitoring/Protocols.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/GDPerformanceView-Swift/GDPerformanceView-Swift/GDPerformanceMonitoring/Protocols.swift -------------------------------------------------------------------------------- /SwiftStudy/Pods/GDPerformanceView-Swift/GDPerformanceView-Swift/GDPerformanceMonitoring/WindowViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/GDPerformanceView-Swift/GDPerformanceView-Swift/GDPerformanceMonitoring/WindowViewController.swift -------------------------------------------------------------------------------- /SwiftStudy/Pods/GDPerformanceView-Swift/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/GDPerformanceView-Swift/LICENSE -------------------------------------------------------------------------------- /SwiftStudy/Pods/GDPerformanceView-Swift/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/GDPerformanceView-Swift/README.md -------------------------------------------------------------------------------- /SwiftStudy/Pods/HandyJSON/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/HandyJSON/LICENSE -------------------------------------------------------------------------------- /SwiftStudy/Pods/HandyJSON/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/HandyJSON/README.md -------------------------------------------------------------------------------- /SwiftStudy/Pods/HandyJSON/Source/AnyExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/HandyJSON/Source/AnyExtensions.swift -------------------------------------------------------------------------------- /SwiftStudy/Pods/HandyJSON/Source/BuiltInBasicType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/HandyJSON/Source/BuiltInBasicType.swift -------------------------------------------------------------------------------- /SwiftStudy/Pods/HandyJSON/Source/BuiltInBridgeType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/HandyJSON/Source/BuiltInBridgeType.swift -------------------------------------------------------------------------------- /SwiftStudy/Pods/HandyJSON/Source/CBridge.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/HandyJSON/Source/CBridge.swift -------------------------------------------------------------------------------- /SwiftStudy/Pods/HandyJSON/Source/Configuration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/HandyJSON/Source/Configuration.swift -------------------------------------------------------------------------------- /SwiftStudy/Pods/HandyJSON/Source/ContextDescriptorType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/HandyJSON/Source/ContextDescriptorType.swift -------------------------------------------------------------------------------- /SwiftStudy/Pods/HandyJSON/Source/CustomDateFormatTransform.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/HandyJSON/Source/CustomDateFormatTransform.swift -------------------------------------------------------------------------------- /SwiftStudy/Pods/HandyJSON/Source/DataTransform.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/HandyJSON/Source/DataTransform.swift -------------------------------------------------------------------------------- /SwiftStudy/Pods/HandyJSON/Source/DateFormatterTransform.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/HandyJSON/Source/DateFormatterTransform.swift -------------------------------------------------------------------------------- /SwiftStudy/Pods/HandyJSON/Source/DateTransform.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/HandyJSON/Source/DateTransform.swift -------------------------------------------------------------------------------- /SwiftStudy/Pods/HandyJSON/Source/Deserializer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/HandyJSON/Source/Deserializer.swift -------------------------------------------------------------------------------- /SwiftStudy/Pods/HandyJSON/Source/EnumTransform.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/HandyJSON/Source/EnumTransform.swift -------------------------------------------------------------------------------- /SwiftStudy/Pods/HandyJSON/Source/EnumType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/HandyJSON/Source/EnumType.swift -------------------------------------------------------------------------------- /SwiftStudy/Pods/HandyJSON/Source/Export.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/HandyJSON/Source/Export.swift -------------------------------------------------------------------------------- /SwiftStudy/Pods/HandyJSON/Source/ExtendCustomBasicType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/HandyJSON/Source/ExtendCustomBasicType.swift -------------------------------------------------------------------------------- /SwiftStudy/Pods/HandyJSON/Source/ExtendCustomModelType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/HandyJSON/Source/ExtendCustomModelType.swift -------------------------------------------------------------------------------- /SwiftStudy/Pods/HandyJSON/Source/FieldDescriptor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/HandyJSON/Source/FieldDescriptor.swift -------------------------------------------------------------------------------- /SwiftStudy/Pods/HandyJSON/Source/HandyJSON.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/HandyJSON/Source/HandyJSON.h -------------------------------------------------------------------------------- /SwiftStudy/Pods/HandyJSON/Source/HelpingMapper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/HandyJSON/Source/HelpingMapper.swift -------------------------------------------------------------------------------- /SwiftStudy/Pods/HandyJSON/Source/HexColorTransform.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/HandyJSON/Source/HexColorTransform.swift -------------------------------------------------------------------------------- /SwiftStudy/Pods/HandyJSON/Source/ISO8601DateTransform.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/HandyJSON/Source/ISO8601DateTransform.swift -------------------------------------------------------------------------------- /SwiftStudy/Pods/HandyJSON/Source/Logger.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/HandyJSON/Source/Logger.swift -------------------------------------------------------------------------------- /SwiftStudy/Pods/HandyJSON/Source/MangledName.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/HandyJSON/Source/MangledName.swift -------------------------------------------------------------------------------- /SwiftStudy/Pods/HandyJSON/Source/Measuable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/HandyJSON/Source/Measuable.swift -------------------------------------------------------------------------------- /SwiftStudy/Pods/HandyJSON/Source/Metadata.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/HandyJSON/Source/Metadata.swift -------------------------------------------------------------------------------- /SwiftStudy/Pods/HandyJSON/Source/NSDecimalNumberTransform.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/HandyJSON/Source/NSDecimalNumberTransform.swift -------------------------------------------------------------------------------- /SwiftStudy/Pods/HandyJSON/Source/OtherExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/HandyJSON/Source/OtherExtension.swift -------------------------------------------------------------------------------- /SwiftStudy/Pods/HandyJSON/Source/PointerType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/HandyJSON/Source/PointerType.swift -------------------------------------------------------------------------------- /SwiftStudy/Pods/HandyJSON/Source/Properties.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/HandyJSON/Source/Properties.swift -------------------------------------------------------------------------------- /SwiftStudy/Pods/HandyJSON/Source/PropertyInfo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/HandyJSON/Source/PropertyInfo.swift -------------------------------------------------------------------------------- /SwiftStudy/Pods/HandyJSON/Source/ReflectionHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/HandyJSON/Source/ReflectionHelper.swift -------------------------------------------------------------------------------- /SwiftStudy/Pods/HandyJSON/Source/Serializer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/HandyJSON/Source/Serializer.swift -------------------------------------------------------------------------------- /SwiftStudy/Pods/HandyJSON/Source/TransformOf.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/HandyJSON/Source/TransformOf.swift -------------------------------------------------------------------------------- /SwiftStudy/Pods/HandyJSON/Source/TransformType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/HandyJSON/Source/TransformType.swift -------------------------------------------------------------------------------- /SwiftStudy/Pods/HandyJSON/Source/Transformable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/HandyJSON/Source/Transformable.swift -------------------------------------------------------------------------------- /SwiftStudy/Pods/HandyJSON/Source/URLTransform.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/HandyJSON/Source/URLTransform.swift -------------------------------------------------------------------------------- /SwiftStudy/Pods/Kingfisher/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/Kingfisher/LICENSE -------------------------------------------------------------------------------- /SwiftStudy/Pods/Kingfisher/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/Kingfisher/README.md -------------------------------------------------------------------------------- /SwiftStudy/Pods/Kingfisher/Sources/Cache/CacheSerializer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/Kingfisher/Sources/Cache/CacheSerializer.swift -------------------------------------------------------------------------------- /SwiftStudy/Pods/Kingfisher/Sources/Cache/DiskStorage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/Kingfisher/Sources/Cache/DiskStorage.swift -------------------------------------------------------------------------------- /SwiftStudy/Pods/Kingfisher/Sources/Cache/FormatIndicatedCacheSerializer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/Kingfisher/Sources/Cache/FormatIndicatedCacheSerializer.swift -------------------------------------------------------------------------------- /SwiftStudy/Pods/Kingfisher/Sources/Cache/ImageCache.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/Kingfisher/Sources/Cache/ImageCache.swift -------------------------------------------------------------------------------- /SwiftStudy/Pods/Kingfisher/Sources/Cache/MemoryStorage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/Kingfisher/Sources/Cache/MemoryStorage.swift -------------------------------------------------------------------------------- /SwiftStudy/Pods/Kingfisher/Sources/Cache/Storage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/Kingfisher/Sources/Cache/Storage.swift -------------------------------------------------------------------------------- /SwiftStudy/Pods/Kingfisher/Sources/Extensions/ImageView+Kingfisher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/Kingfisher/Sources/Extensions/ImageView+Kingfisher.swift -------------------------------------------------------------------------------- /SwiftStudy/Pods/Kingfisher/Sources/Extensions/UIButton+Kingfisher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/Kingfisher/Sources/Extensions/UIButton+Kingfisher.swift -------------------------------------------------------------------------------- /SwiftStudy/Pods/Kingfisher/Sources/General/Deprecated.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/Kingfisher/Sources/General/Deprecated.swift -------------------------------------------------------------------------------- /SwiftStudy/Pods/Kingfisher/Sources/General/ImageSource/ImageDataProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/Kingfisher/Sources/General/ImageSource/ImageDataProvider.swift -------------------------------------------------------------------------------- /SwiftStudy/Pods/Kingfisher/Sources/General/ImageSource/Resource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/Kingfisher/Sources/General/ImageSource/Resource.swift -------------------------------------------------------------------------------- /SwiftStudy/Pods/Kingfisher/Sources/General/ImageSource/Source.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/Kingfisher/Sources/General/ImageSource/Source.swift -------------------------------------------------------------------------------- /SwiftStudy/Pods/Kingfisher/Sources/General/Kingfisher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/Kingfisher/Sources/General/Kingfisher.swift -------------------------------------------------------------------------------- /SwiftStudy/Pods/Kingfisher/Sources/General/KingfisherError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/Kingfisher/Sources/General/KingfisherError.swift -------------------------------------------------------------------------------- /SwiftStudy/Pods/Kingfisher/Sources/General/KingfisherManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/Kingfisher/Sources/General/KingfisherManager.swift -------------------------------------------------------------------------------- /SwiftStudy/Pods/Kingfisher/Sources/General/KingfisherOptionsInfo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/Kingfisher/Sources/General/KingfisherOptionsInfo.swift -------------------------------------------------------------------------------- /SwiftStudy/Pods/Kingfisher/Sources/Image/Filter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/Kingfisher/Sources/Image/Filter.swift -------------------------------------------------------------------------------- /SwiftStudy/Pods/Kingfisher/Sources/Image/GIFAnimatedImage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/Kingfisher/Sources/Image/GIFAnimatedImage.swift -------------------------------------------------------------------------------- /SwiftStudy/Pods/Kingfisher/Sources/Image/Image.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/Kingfisher/Sources/Image/Image.swift -------------------------------------------------------------------------------- /SwiftStudy/Pods/Kingfisher/Sources/Image/ImageDrawing.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/Kingfisher/Sources/Image/ImageDrawing.swift -------------------------------------------------------------------------------- /SwiftStudy/Pods/Kingfisher/Sources/Image/ImageFormat.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/Kingfisher/Sources/Image/ImageFormat.swift -------------------------------------------------------------------------------- /SwiftStudy/Pods/Kingfisher/Sources/Image/ImageProcessor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/Kingfisher/Sources/Image/ImageProcessor.swift -------------------------------------------------------------------------------- /SwiftStudy/Pods/Kingfisher/Sources/Image/ImageProgressive.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/Kingfisher/Sources/Image/ImageProgressive.swift -------------------------------------------------------------------------------- /SwiftStudy/Pods/Kingfisher/Sources/Image/ImageTransition.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/Kingfisher/Sources/Image/ImageTransition.swift -------------------------------------------------------------------------------- /SwiftStudy/Pods/Kingfisher/Sources/Image/Placeholder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/Kingfisher/Sources/Image/Placeholder.swift -------------------------------------------------------------------------------- /SwiftStudy/Pods/Kingfisher/Sources/Kingfisher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/Kingfisher/Sources/Kingfisher.h -------------------------------------------------------------------------------- /SwiftStudy/Pods/Kingfisher/Sources/Networking/AuthenticationChallengeResponsable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/Kingfisher/Sources/Networking/AuthenticationChallengeResponsable.swift -------------------------------------------------------------------------------- /SwiftStudy/Pods/Kingfisher/Sources/Networking/ImageDataProcessor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/Kingfisher/Sources/Networking/ImageDataProcessor.swift -------------------------------------------------------------------------------- /SwiftStudy/Pods/Kingfisher/Sources/Networking/ImageDownloader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/Kingfisher/Sources/Networking/ImageDownloader.swift -------------------------------------------------------------------------------- /SwiftStudy/Pods/Kingfisher/Sources/Networking/ImageDownloaderDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/Kingfisher/Sources/Networking/ImageDownloaderDelegate.swift -------------------------------------------------------------------------------- /SwiftStudy/Pods/Kingfisher/Sources/Networking/ImageModifier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/Kingfisher/Sources/Networking/ImageModifier.swift -------------------------------------------------------------------------------- /SwiftStudy/Pods/Kingfisher/Sources/Networking/ImagePrefetcher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/Kingfisher/Sources/Networking/ImagePrefetcher.swift -------------------------------------------------------------------------------- /SwiftStudy/Pods/Kingfisher/Sources/Networking/RedirectHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/Kingfisher/Sources/Networking/RedirectHandler.swift -------------------------------------------------------------------------------- /SwiftStudy/Pods/Kingfisher/Sources/Networking/RequestModifier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/Kingfisher/Sources/Networking/RequestModifier.swift -------------------------------------------------------------------------------- /SwiftStudy/Pods/Kingfisher/Sources/Networking/SessionDataTask.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/Kingfisher/Sources/Networking/SessionDataTask.swift -------------------------------------------------------------------------------- /SwiftStudy/Pods/Kingfisher/Sources/Networking/SessionDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/Kingfisher/Sources/Networking/SessionDelegate.swift -------------------------------------------------------------------------------- /SwiftStudy/Pods/Kingfisher/Sources/Utility/Box.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/Kingfisher/Sources/Utility/Box.swift -------------------------------------------------------------------------------- /SwiftStudy/Pods/Kingfisher/Sources/Utility/CallbackQueue.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/Kingfisher/Sources/Utility/CallbackQueue.swift -------------------------------------------------------------------------------- /SwiftStudy/Pods/Kingfisher/Sources/Utility/Delegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/Kingfisher/Sources/Utility/Delegate.swift -------------------------------------------------------------------------------- /SwiftStudy/Pods/Kingfisher/Sources/Utility/ExtensionHelpers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/Kingfisher/Sources/Utility/ExtensionHelpers.swift -------------------------------------------------------------------------------- /SwiftStudy/Pods/Kingfisher/Sources/Utility/Result.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/Kingfisher/Sources/Utility/Result.swift -------------------------------------------------------------------------------- /SwiftStudy/Pods/Kingfisher/Sources/Utility/Runtime.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/Kingfisher/Sources/Utility/Runtime.swift -------------------------------------------------------------------------------- /SwiftStudy/Pods/Kingfisher/Sources/Utility/SizeExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/Kingfisher/Sources/Utility/SizeExtensions.swift -------------------------------------------------------------------------------- /SwiftStudy/Pods/Kingfisher/Sources/Utility/String+MD5.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/Kingfisher/Sources/Utility/String+MD5.swift -------------------------------------------------------------------------------- /SwiftStudy/Pods/Kingfisher/Sources/Views/AnimatedImageView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/Kingfisher/Sources/Views/AnimatedImageView.swift -------------------------------------------------------------------------------- /SwiftStudy/Pods/Kingfisher/Sources/Views/Indicator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/Kingfisher/Sources/Views/Indicator.swift -------------------------------------------------------------------------------- /SwiftStudy/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/Manifest.lock -------------------------------------------------------------------------------- /SwiftStudy/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SwiftStudy/Pods/SnapKit/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/SnapKit/LICENSE -------------------------------------------------------------------------------- /SwiftStudy/Pods/SnapKit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/SnapKit/README.md -------------------------------------------------------------------------------- /SwiftStudy/Pods/SnapKit/Source/Constraint.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/SnapKit/Source/Constraint.swift -------------------------------------------------------------------------------- /SwiftStudy/Pods/SnapKit/Source/ConstraintAttributes.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/SnapKit/Source/ConstraintAttributes.swift -------------------------------------------------------------------------------- /SwiftStudy/Pods/SnapKit/Source/ConstraintConfig.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/SnapKit/Source/ConstraintConfig.swift -------------------------------------------------------------------------------- /SwiftStudy/Pods/SnapKit/Source/ConstraintConstantTarget.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/SnapKit/Source/ConstraintConstantTarget.swift -------------------------------------------------------------------------------- /SwiftStudy/Pods/SnapKit/Source/ConstraintDSL.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/SnapKit/Source/ConstraintDSL.swift -------------------------------------------------------------------------------- /SwiftStudy/Pods/SnapKit/Source/ConstraintDescription.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/SnapKit/Source/ConstraintDescription.swift -------------------------------------------------------------------------------- /SwiftStudy/Pods/SnapKit/Source/ConstraintInsetTarget.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/SnapKit/Source/ConstraintInsetTarget.swift -------------------------------------------------------------------------------- /SwiftStudy/Pods/SnapKit/Source/ConstraintInsets.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/SnapKit/Source/ConstraintInsets.swift -------------------------------------------------------------------------------- /SwiftStudy/Pods/SnapKit/Source/ConstraintItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/SnapKit/Source/ConstraintItem.swift -------------------------------------------------------------------------------- /SwiftStudy/Pods/SnapKit/Source/ConstraintLayoutGuide+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/SnapKit/Source/ConstraintLayoutGuide+Extensions.swift -------------------------------------------------------------------------------- /SwiftStudy/Pods/SnapKit/Source/ConstraintLayoutGuide.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/SnapKit/Source/ConstraintLayoutGuide.swift -------------------------------------------------------------------------------- /SwiftStudy/Pods/SnapKit/Source/ConstraintLayoutGuideDSL.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/SnapKit/Source/ConstraintLayoutGuideDSL.swift -------------------------------------------------------------------------------- /SwiftStudy/Pods/SnapKit/Source/ConstraintLayoutSupport.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/SnapKit/Source/ConstraintLayoutSupport.swift -------------------------------------------------------------------------------- /SwiftStudy/Pods/SnapKit/Source/ConstraintLayoutSupportDSL.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/SnapKit/Source/ConstraintLayoutSupportDSL.swift -------------------------------------------------------------------------------- /SwiftStudy/Pods/SnapKit/Source/ConstraintMaker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/SnapKit/Source/ConstraintMaker.swift -------------------------------------------------------------------------------- /SwiftStudy/Pods/SnapKit/Source/ConstraintMakerEditable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/SnapKit/Source/ConstraintMakerEditable.swift -------------------------------------------------------------------------------- /SwiftStudy/Pods/SnapKit/Source/ConstraintMakerExtendable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/SnapKit/Source/ConstraintMakerExtendable.swift -------------------------------------------------------------------------------- /SwiftStudy/Pods/SnapKit/Source/ConstraintMakerFinalizable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/SnapKit/Source/ConstraintMakerFinalizable.swift -------------------------------------------------------------------------------- /SwiftStudy/Pods/SnapKit/Source/ConstraintMakerPriortizable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/SnapKit/Source/ConstraintMakerPriortizable.swift -------------------------------------------------------------------------------- /SwiftStudy/Pods/SnapKit/Source/ConstraintMakerRelatable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/SnapKit/Source/ConstraintMakerRelatable.swift -------------------------------------------------------------------------------- /SwiftStudy/Pods/SnapKit/Source/ConstraintMultiplierTarget.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/SnapKit/Source/ConstraintMultiplierTarget.swift -------------------------------------------------------------------------------- /SwiftStudy/Pods/SnapKit/Source/ConstraintOffsetTarget.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/SnapKit/Source/ConstraintOffsetTarget.swift -------------------------------------------------------------------------------- /SwiftStudy/Pods/SnapKit/Source/ConstraintPriority.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/SnapKit/Source/ConstraintPriority.swift -------------------------------------------------------------------------------- /SwiftStudy/Pods/SnapKit/Source/ConstraintPriorityTarget.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/SnapKit/Source/ConstraintPriorityTarget.swift -------------------------------------------------------------------------------- /SwiftStudy/Pods/SnapKit/Source/ConstraintRelatableTarget.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/SnapKit/Source/ConstraintRelatableTarget.swift -------------------------------------------------------------------------------- /SwiftStudy/Pods/SnapKit/Source/ConstraintRelation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/SnapKit/Source/ConstraintRelation.swift -------------------------------------------------------------------------------- /SwiftStudy/Pods/SnapKit/Source/ConstraintView+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/SnapKit/Source/ConstraintView+Extensions.swift -------------------------------------------------------------------------------- /SwiftStudy/Pods/SnapKit/Source/ConstraintView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/SnapKit/Source/ConstraintView.swift -------------------------------------------------------------------------------- /SwiftStudy/Pods/SnapKit/Source/ConstraintViewDSL.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/SnapKit/Source/ConstraintViewDSL.swift -------------------------------------------------------------------------------- /SwiftStudy/Pods/SnapKit/Source/Debugging.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/SnapKit/Source/Debugging.swift -------------------------------------------------------------------------------- /SwiftStudy/Pods/SnapKit/Source/LayoutConstraint.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/SnapKit/Source/LayoutConstraint.swift -------------------------------------------------------------------------------- /SwiftStudy/Pods/SnapKit/Source/LayoutConstraintItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/SnapKit/Source/LayoutConstraintItem.swift -------------------------------------------------------------------------------- /SwiftStudy/Pods/SnapKit/Source/Typealiases.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/SnapKit/Source/Typealiases.swift -------------------------------------------------------------------------------- /SwiftStudy/Pods/SnapKit/Source/UILayoutSupport+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/SnapKit/Source/UILayoutSupport+Extensions.swift -------------------------------------------------------------------------------- /SwiftStudy/Pods/Target Support Files/Alamofire/Alamofire-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/Target Support Files/Alamofire/Alamofire-Info.plist -------------------------------------------------------------------------------- /SwiftStudy/Pods/Target Support Files/Alamofire/Alamofire-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/Target Support Files/Alamofire/Alamofire-dummy.m -------------------------------------------------------------------------------- /SwiftStudy/Pods/Target Support Files/Alamofire/Alamofire-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/Target Support Files/Alamofire/Alamofire-prefix.pch -------------------------------------------------------------------------------- /SwiftStudy/Pods/Target Support Files/Alamofire/Alamofire-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/Target Support Files/Alamofire/Alamofire-umbrella.h -------------------------------------------------------------------------------- /SwiftStudy/Pods/Target Support Files/Alamofire/Alamofire.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/Target Support Files/Alamofire/Alamofire.modulemap -------------------------------------------------------------------------------- /SwiftStudy/Pods/Target Support Files/Alamofire/Alamofire.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/Target Support Files/Alamofire/Alamofire.xcconfig -------------------------------------------------------------------------------- /SwiftStudy/Pods/Target Support Files/AlamofireImage/AlamofireImage-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/Target Support Files/AlamofireImage/AlamofireImage-Info.plist -------------------------------------------------------------------------------- /SwiftStudy/Pods/Target Support Files/AlamofireImage/AlamofireImage-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/Target Support Files/AlamofireImage/AlamofireImage-dummy.m -------------------------------------------------------------------------------- /SwiftStudy/Pods/Target Support Files/AlamofireImage/AlamofireImage-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/Target Support Files/AlamofireImage/AlamofireImage-prefix.pch -------------------------------------------------------------------------------- /SwiftStudy/Pods/Target Support Files/AlamofireImage/AlamofireImage-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/Target Support Files/AlamofireImage/AlamofireImage-umbrella.h -------------------------------------------------------------------------------- /SwiftStudy/Pods/Target Support Files/AlamofireImage/AlamofireImage.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/Target Support Files/AlamofireImage/AlamofireImage.modulemap -------------------------------------------------------------------------------- /SwiftStudy/Pods/Target Support Files/AlamofireImage/AlamofireImage.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/Target Support Files/AlamofireImage/AlamofireImage.xcconfig -------------------------------------------------------------------------------- /SwiftStudy/Pods/Target Support Files/GDPerformanceView-Swift/GDPerformanceView-Swift-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/Target Support Files/GDPerformanceView-Swift/GDPerformanceView-Swift-Info.plist -------------------------------------------------------------------------------- /SwiftStudy/Pods/Target Support Files/GDPerformanceView-Swift/GDPerformanceView-Swift-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/Target Support Files/GDPerformanceView-Swift/GDPerformanceView-Swift-dummy.m -------------------------------------------------------------------------------- /SwiftStudy/Pods/Target Support Files/GDPerformanceView-Swift/GDPerformanceView-Swift-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/Target Support Files/GDPerformanceView-Swift/GDPerformanceView-Swift-prefix.pch -------------------------------------------------------------------------------- /SwiftStudy/Pods/Target Support Files/GDPerformanceView-Swift/GDPerformanceView-Swift-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/Target Support Files/GDPerformanceView-Swift/GDPerformanceView-Swift-umbrella.h -------------------------------------------------------------------------------- /SwiftStudy/Pods/Target Support Files/GDPerformanceView-Swift/GDPerformanceView-Swift.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/Target Support Files/GDPerformanceView-Swift/GDPerformanceView-Swift.modulemap -------------------------------------------------------------------------------- /SwiftStudy/Pods/Target Support Files/GDPerformanceView-Swift/GDPerformanceView-Swift.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/Target Support Files/GDPerformanceView-Swift/GDPerformanceView-Swift.xcconfig -------------------------------------------------------------------------------- /SwiftStudy/Pods/Target Support Files/HandyJSON/HandyJSON-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/Target Support Files/HandyJSON/HandyJSON-Info.plist -------------------------------------------------------------------------------- /SwiftStudy/Pods/Target Support Files/HandyJSON/HandyJSON-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/Target Support Files/HandyJSON/HandyJSON-dummy.m -------------------------------------------------------------------------------- /SwiftStudy/Pods/Target Support Files/HandyJSON/HandyJSON-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/Target Support Files/HandyJSON/HandyJSON-prefix.pch -------------------------------------------------------------------------------- /SwiftStudy/Pods/Target Support Files/HandyJSON/HandyJSON-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/Target Support Files/HandyJSON/HandyJSON-umbrella.h -------------------------------------------------------------------------------- /SwiftStudy/Pods/Target Support Files/HandyJSON/HandyJSON.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/Target Support Files/HandyJSON/HandyJSON.modulemap -------------------------------------------------------------------------------- /SwiftStudy/Pods/Target Support Files/HandyJSON/HandyJSON.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/Target Support Files/HandyJSON/HandyJSON.xcconfig -------------------------------------------------------------------------------- /SwiftStudy/Pods/Target Support Files/Kingfisher/Kingfisher-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/Target Support Files/Kingfisher/Kingfisher-Info.plist -------------------------------------------------------------------------------- /SwiftStudy/Pods/Target Support Files/Kingfisher/Kingfisher-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/Target Support Files/Kingfisher/Kingfisher-dummy.m -------------------------------------------------------------------------------- /SwiftStudy/Pods/Target Support Files/Kingfisher/Kingfisher-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/Target Support Files/Kingfisher/Kingfisher-prefix.pch -------------------------------------------------------------------------------- /SwiftStudy/Pods/Target Support Files/Kingfisher/Kingfisher-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/Target Support Files/Kingfisher/Kingfisher-umbrella.h -------------------------------------------------------------------------------- /SwiftStudy/Pods/Target Support Files/Kingfisher/Kingfisher.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/Target Support Files/Kingfisher/Kingfisher.modulemap -------------------------------------------------------------------------------- /SwiftStudy/Pods/Target Support Files/Kingfisher/Kingfisher.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/Target Support Files/Kingfisher/Kingfisher.xcconfig -------------------------------------------------------------------------------- /SwiftStudy/Pods/Target Support Files/Pods-SwiftStudy/Pods-SwiftStudy-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/Target Support Files/Pods-SwiftStudy/Pods-SwiftStudy-Info.plist -------------------------------------------------------------------------------- /SwiftStudy/Pods/Target Support Files/Pods-SwiftStudy/Pods-SwiftStudy-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/Target Support Files/Pods-SwiftStudy/Pods-SwiftStudy-acknowledgements.markdown -------------------------------------------------------------------------------- /SwiftStudy/Pods/Target Support Files/Pods-SwiftStudy/Pods-SwiftStudy-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/Target Support Files/Pods-SwiftStudy/Pods-SwiftStudy-acknowledgements.plist -------------------------------------------------------------------------------- /SwiftStudy/Pods/Target Support Files/Pods-SwiftStudy/Pods-SwiftStudy-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/Target Support Files/Pods-SwiftStudy/Pods-SwiftStudy-dummy.m -------------------------------------------------------------------------------- /SwiftStudy/Pods/Target Support Files/Pods-SwiftStudy/Pods-SwiftStudy-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/Target Support Files/Pods-SwiftStudy/Pods-SwiftStudy-frameworks.sh -------------------------------------------------------------------------------- /SwiftStudy/Pods/Target Support Files/Pods-SwiftStudy/Pods-SwiftStudy-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/Target Support Files/Pods-SwiftStudy/Pods-SwiftStudy-umbrella.h -------------------------------------------------------------------------------- /SwiftStudy/Pods/Target Support Files/Pods-SwiftStudy/Pods-SwiftStudy.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/Target Support Files/Pods-SwiftStudy/Pods-SwiftStudy.debug.xcconfig -------------------------------------------------------------------------------- /SwiftStudy/Pods/Target Support Files/Pods-SwiftStudy/Pods-SwiftStudy.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/Target Support Files/Pods-SwiftStudy/Pods-SwiftStudy.modulemap -------------------------------------------------------------------------------- /SwiftStudy/Pods/Target Support Files/Pods-SwiftStudy/Pods-SwiftStudy.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/Target Support Files/Pods-SwiftStudy/Pods-SwiftStudy.release.xcconfig -------------------------------------------------------------------------------- /SwiftStudy/Pods/Target Support Files/SnapKit/SnapKit-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/Target Support Files/SnapKit/SnapKit-Info.plist -------------------------------------------------------------------------------- /SwiftStudy/Pods/Target Support Files/SnapKit/SnapKit-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/Target Support Files/SnapKit/SnapKit-dummy.m -------------------------------------------------------------------------------- /SwiftStudy/Pods/Target Support Files/SnapKit/SnapKit-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/Target Support Files/SnapKit/SnapKit-prefix.pch -------------------------------------------------------------------------------- /SwiftStudy/Pods/Target Support Files/SnapKit/SnapKit-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/Target Support Files/SnapKit/SnapKit-umbrella.h -------------------------------------------------------------------------------- /SwiftStudy/Pods/Target Support Files/SnapKit/SnapKit.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/Target Support Files/SnapKit/SnapKit.modulemap -------------------------------------------------------------------------------- /SwiftStudy/Pods/Target Support Files/SnapKit/SnapKit.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/Target Support Files/SnapKit/SnapKit.xcconfig -------------------------------------------------------------------------------- /SwiftStudy/Pods/Target Support Files/WKWebView/WKWebView-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/Target Support Files/WKWebView/WKWebView-Info.plist -------------------------------------------------------------------------------- /SwiftStudy/Pods/Target Support Files/WKWebView/WKWebView-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/Target Support Files/WKWebView/WKWebView-dummy.m -------------------------------------------------------------------------------- /SwiftStudy/Pods/Target Support Files/WKWebView/WKWebView-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/Target Support Files/WKWebView/WKWebView-prefix.pch -------------------------------------------------------------------------------- /SwiftStudy/Pods/Target Support Files/WKWebView/WKWebView-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/Target Support Files/WKWebView/WKWebView-umbrella.h -------------------------------------------------------------------------------- /SwiftStudy/Pods/Target Support Files/WKWebView/WKWebView.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/Target Support Files/WKWebView/WKWebView.modulemap -------------------------------------------------------------------------------- /SwiftStudy/Pods/Target Support Files/WKWebView/WKWebView.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/Target Support Files/WKWebView/WKWebView.xcconfig -------------------------------------------------------------------------------- /SwiftStudy/Pods/WKWebView/ChinaDailyForiPad/WebView/SLPrefixHeader.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/WKWebView/ChinaDailyForiPad/WebView/SLPrefixHeader.pch -------------------------------------------------------------------------------- /SwiftStudy/Pods/WKWebView/ChinaDailyForiPad/WebView/SLWebViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/WKWebView/ChinaDailyForiPad/WebView/SLWebViewController.h -------------------------------------------------------------------------------- /SwiftStudy/Pods/WKWebView/ChinaDailyForiPad/WebView/SLWebViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/WKWebView/ChinaDailyForiPad/WebView/SLWebViewController.m -------------------------------------------------------------------------------- /SwiftStudy/Pods/WKWebView/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/WKWebView/LICENSE -------------------------------------------------------------------------------- /SwiftStudy/Pods/WKWebView/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/WKWebView/README.md -------------------------------------------------------------------------------- /SwiftStudy/Pods/WKWebView/Resource/JStoOC.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/WKWebView/Resource/JStoOC.html -------------------------------------------------------------------------------- /SwiftStudy/Pods/WKWebView/Resource/backbutton@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/WKWebView/Resource/backbutton@2x.png -------------------------------------------------------------------------------- /SwiftStudy/Pods/WKWebView/Resource/backbutton@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/WKWebView/Resource/backbutton@3x.png -------------------------------------------------------------------------------- /SwiftStudy/Pods/WKWebView/Resource/girl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/WKWebView/Resource/girl.png -------------------------------------------------------------------------------- /SwiftStudy/Pods/WKWebView/Resource/webRefreshButton@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/WKWebView/Resource/webRefreshButton@2x.png -------------------------------------------------------------------------------- /SwiftStudy/Pods/WKWebView/Resource/webRefreshButton@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/Pods/WKWebView/Resource/webRefreshButton@3x.png -------------------------------------------------------------------------------- /SwiftStudy/SwiftStudy.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/SwiftStudy.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SwiftStudy/SwiftStudy.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/SwiftStudy.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /SwiftStudy/SwiftStudy.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/SwiftStudy.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /SwiftStudy/SwiftStudy.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/SwiftStudy.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /SwiftStudy/SwiftStudy.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/SwiftStudy.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /SwiftStudy/SwiftStudy/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/SwiftStudy/AppDelegate.swift -------------------------------------------------------------------------------- /SwiftStudy/SwiftStudy/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/SwiftStudy/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /SwiftStudy/SwiftStudy/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/SwiftStudy/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /SwiftStudy/SwiftStudy/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/SwiftStudy/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /SwiftStudy/SwiftStudy/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/SwiftStudy/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /SwiftStudy/SwiftStudy/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/SwiftStudy/Info.plist -------------------------------------------------------------------------------- /SwiftStudy/SwiftStudy/Resource/Data.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/SwiftStudy/Resource/Data.plist -------------------------------------------------------------------------------- /SwiftStudy/SwiftStudy/Resource/photo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/SwiftStudy/Resource/photo@2x.png -------------------------------------------------------------------------------- /SwiftStudy/SwiftStudy/Resource/placeholderImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/SwiftStudy/Resource/placeholderImage.png -------------------------------------------------------------------------------- /SwiftStudy/SwiftStudy/Resource/爱你@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/SwiftStudy/Resource/爱你@2x.png -------------------------------------------------------------------------------- /SwiftStudy/SwiftStudy/Resource/爱你@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/SwiftStudy/Resource/爱你@3x.png -------------------------------------------------------------------------------- /SwiftStudy/SwiftStudy/SLNavigationController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/SwiftStudy/SLNavigationController.swift -------------------------------------------------------------------------------- /SwiftStudy/SwiftStudy/SLPictureBrowsingCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/SwiftStudy/SLPictureBrowsingCell.swift -------------------------------------------------------------------------------- /SwiftStudy/SwiftStudy/SLPictureBrowsingViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/SwiftStudy/SLPictureBrowsingViewController.swift -------------------------------------------------------------------------------- /SwiftStudy/SwiftStudy/SLPictureTransitionAnimation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/SwiftStudy/SLPictureTransitionAnimation.swift -------------------------------------------------------------------------------- /SwiftStudy/SwiftStudy/SLPictureZoomView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/SwiftStudy/SLPictureZoomView.swift -------------------------------------------------------------------------------- /SwiftStudy/SwiftStudy/SLPresenter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/SwiftStudy/SLPresenter.swift -------------------------------------------------------------------------------- /SwiftStudy/SwiftStudy/SLTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/SwiftStudy/SLTableViewCell.swift -------------------------------------------------------------------------------- /SwiftStudy/SwiftStudy/SLWebViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/SwiftStudy/SLWebViewController.swift -------------------------------------------------------------------------------- /SwiftStudy/SwiftStudy/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/SwiftStudy/ViewController.swift -------------------------------------------------------------------------------- /SwiftStudy/SwiftStudyTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/SwiftStudyTests/Info.plist -------------------------------------------------------------------------------- /SwiftStudy/SwiftStudyTests/SwiftStudyTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/SwiftStudyTests/SwiftStudyTests.swift -------------------------------------------------------------------------------- /SwiftStudy/SwiftStudyUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/SwiftStudyUITests/Info.plist -------------------------------------------------------------------------------- /SwiftStudy/SwiftStudyUITests/SwiftStudyUITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/SwiftStudyUITests/SwiftStudyUITests.swift -------------------------------------------------------------------------------- /SwiftStudy/图集浏览效果.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/图集浏览效果.gif -------------------------------------------------------------------------------- /SwiftStudy/富文本效果.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/SwiftStudy/HEAD/SwiftStudy/富文本效果.gif --------------------------------------------------------------------------------