├── .github └── workflows │ └── ios.yml ├── Demo ├── Demo.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ └── xcshareddata │ │ ├── xcbaselines │ │ └── 6AECE9D625C4CB2C0071FAA3.xcbaseline │ │ │ ├── 05F6337E-8D9B-4265-86EA-F2CCE4686112.plist │ │ │ └── Info.plist │ │ └── xcschemes │ │ ├── Demo.xcscheme │ │ └── Tests.xcscheme ├── Demo │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── bottomImage.imageset │ │ │ ├── Contents.json │ │ │ └── bottomImage.png │ │ ├── bottomImage_black.imageset │ │ │ ├── Contents.json │ │ │ └── bottomImage_black.jpg │ │ ├── fullScreen.imageset │ │ │ ├── Contents.json │ │ │ └── fullScreen.png │ │ ├── topImage.imageset │ │ │ ├── Contents.json │ │ │ └── topImage.png │ │ └── topImage_black.imageset │ │ │ ├── Contents.json │ │ │ └── topImage_black.jpg │ ├── Base.lproj │ │ └── Main.storyboard │ ├── Info.plist │ ├── LaunchScreen_CH.storyboard │ ├── LaunchScreen_EN.storyboard │ ├── MBProgressHUD │ │ ├── MBProgressHUD.h │ │ └── MBProgressHUD.m │ ├── Masonry │ │ ├── MASCompositeConstraint.h │ │ ├── MASCompositeConstraint.m │ │ ├── MASConstraint+Private.h │ │ ├── MASConstraint.h │ │ ├── MASConstraint.m │ │ ├── MASConstraintMaker.h │ │ ├── MASConstraintMaker.m │ │ ├── MASLayoutConstraint.h │ │ ├── MASLayoutConstraint.m │ │ ├── MASUtilities.h │ │ ├── MASViewAttribute.h │ │ ├── MASViewAttribute.m │ │ ├── MASViewConstraint.h │ │ ├── MASViewConstraint.m │ │ ├── Masonry.h │ │ ├── NSArray+MASAdditions.h │ │ ├── NSArray+MASAdditions.m │ │ ├── NSArray+MASShorthandAdditions.h │ │ ├── NSLayoutConstraint+MASDebugAdditions.h │ │ ├── NSLayoutConstraint+MASDebugAdditions.m │ │ ├── View+MASAdditions.h │ │ ├── View+MASAdditions.m │ │ ├── View+MASShorthandAdditions.h │ │ ├── ViewController+MASAdditions.h │ │ └── ViewController+MASAdditions.m │ ├── UIImage+Category.h │ ├── UIImage+Category.m │ ├── UIView+HUD.h │ ├── UIView+HUD.m │ ├── ViewController.h │ ├── ViewController.m │ ├── en.lproj │ │ └── InfoPlist.strings │ ├── main.m │ └── zh-Hans.lproj │ │ ├── InfoPlist.strings │ │ └── Main.strings ├── SwiftDemo │ ├── AppDelegate.swift │ ├── Base.lproj │ │ └── Main.storyboard │ ├── Info.plist │ ├── SnapKit │ │ ├── Constraint.swift │ │ ├── ConstraintAttributes.swift │ │ ├── ConstraintConfig.swift │ │ ├── ConstraintConstantTarget.swift │ │ ├── ConstraintDSL.swift │ │ ├── ConstraintDescription.swift │ │ ├── ConstraintDirectionalInsetTarget.swift │ │ ├── ConstraintDirectionalInsets.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 │ │ ├── ConstraintMakerPrioritizable.swift │ │ ├── ConstraintMakerRelatable+Extensions.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 │ ├── SwiftDemo-Bridging-Header.h │ ├── ViewController.swift │ └── zh-Hans.lproj │ │ └── Main.strings └── Tests │ ├── Info.plist │ ├── Resources │ ├── LaunchImage │ │ ├── launchImage_hor_dark.ktx │ │ ├── launchImage_hor_light.ktx │ │ ├── launchImage_ver_dark.ktx │ │ └── launchImage_ver_light.ktx │ ├── hor_dark.jpg │ ├── hor_light.jpg │ ├── ver_dark.jpg │ └── ver_light.jpg │ ├── Tests.m │ ├── UIImage+Category.h │ └── UIImage+Category.m ├── Framework ├── Info.plist └── LLDynamicLaunchScreen.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist │ └── xcshareddata │ └── xcschemes │ └── LLDynamicLaunchScreen.xcscheme ├── LICENSE ├── LLDynamicLaunchScreen.podspec ├── LLDynamicLaunchScreen ├── LLDynamicLaunchScreen+LLPrivate.m ├── LLDynamicLaunchScreen.h ├── LLDynamicLaunchScreen.m └── UIImage+LLPrivate.m ├── README.md ├── README.osc.md └── Resources ├── demo1.gif └── demo2.gif /.github/workflows/ios.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/internetWei/LLDynamicLaunchScreen/HEAD/.github/workflows/ios.yml -------------------------------------------------------------------------------- /Demo/Demo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/internetWei/LLDynamicLaunchScreen/HEAD/Demo/Demo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Demo/Demo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/internetWei/LLDynamicLaunchScreen/HEAD/Demo/Demo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Demo/Demo.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/internetWei/LLDynamicLaunchScreen/HEAD/Demo/Demo.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Demo/Demo.xcodeproj/xcshareddata/xcbaselines/6AECE9D625C4CB2C0071FAA3.xcbaseline/05F6337E-8D9B-4265-86EA-F2CCE4686112.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/internetWei/LLDynamicLaunchScreen/HEAD/Demo/Demo.xcodeproj/xcshareddata/xcbaselines/6AECE9D625C4CB2C0071FAA3.xcbaseline/05F6337E-8D9B-4265-86EA-F2CCE4686112.plist -------------------------------------------------------------------------------- /Demo/Demo.xcodeproj/xcshareddata/xcbaselines/6AECE9D625C4CB2C0071FAA3.xcbaseline/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/internetWei/LLDynamicLaunchScreen/HEAD/Demo/Demo.xcodeproj/xcshareddata/xcbaselines/6AECE9D625C4CB2C0071FAA3.xcbaseline/Info.plist -------------------------------------------------------------------------------- /Demo/Demo.xcodeproj/xcshareddata/xcschemes/Demo.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/internetWei/LLDynamicLaunchScreen/HEAD/Demo/Demo.xcodeproj/xcshareddata/xcschemes/Demo.xcscheme -------------------------------------------------------------------------------- /Demo/Demo.xcodeproj/xcshareddata/xcschemes/Tests.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/internetWei/LLDynamicLaunchScreen/HEAD/Demo/Demo.xcodeproj/xcshareddata/xcschemes/Tests.xcscheme -------------------------------------------------------------------------------- /Demo/Demo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/internetWei/LLDynamicLaunchScreen/HEAD/Demo/Demo/AppDelegate.h -------------------------------------------------------------------------------- /Demo/Demo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/internetWei/LLDynamicLaunchScreen/HEAD/Demo/Demo/AppDelegate.m -------------------------------------------------------------------------------- /Demo/Demo/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/internetWei/LLDynamicLaunchScreen/HEAD/Demo/Demo/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Demo/Demo/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/internetWei/LLDynamicLaunchScreen/HEAD/Demo/Demo/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Demo/Demo/Assets.xcassets/bottomImage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/internetWei/LLDynamicLaunchScreen/HEAD/Demo/Demo/Assets.xcassets/bottomImage.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/Demo/Assets.xcassets/bottomImage.imageset/bottomImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/internetWei/LLDynamicLaunchScreen/HEAD/Demo/Demo/Assets.xcassets/bottomImage.imageset/bottomImage.png -------------------------------------------------------------------------------- /Demo/Demo/Assets.xcassets/bottomImage_black.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/internetWei/LLDynamicLaunchScreen/HEAD/Demo/Demo/Assets.xcassets/bottomImage_black.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/Demo/Assets.xcassets/bottomImage_black.imageset/bottomImage_black.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/internetWei/LLDynamicLaunchScreen/HEAD/Demo/Demo/Assets.xcassets/bottomImage_black.imageset/bottomImage_black.jpg -------------------------------------------------------------------------------- /Demo/Demo/Assets.xcassets/fullScreen.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/internetWei/LLDynamicLaunchScreen/HEAD/Demo/Demo/Assets.xcassets/fullScreen.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/Demo/Assets.xcassets/fullScreen.imageset/fullScreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/internetWei/LLDynamicLaunchScreen/HEAD/Demo/Demo/Assets.xcassets/fullScreen.imageset/fullScreen.png -------------------------------------------------------------------------------- /Demo/Demo/Assets.xcassets/topImage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/internetWei/LLDynamicLaunchScreen/HEAD/Demo/Demo/Assets.xcassets/topImage.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/Demo/Assets.xcassets/topImage.imageset/topImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/internetWei/LLDynamicLaunchScreen/HEAD/Demo/Demo/Assets.xcassets/topImage.imageset/topImage.png -------------------------------------------------------------------------------- /Demo/Demo/Assets.xcassets/topImage_black.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/internetWei/LLDynamicLaunchScreen/HEAD/Demo/Demo/Assets.xcassets/topImage_black.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/Demo/Assets.xcassets/topImage_black.imageset/topImage_black.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/internetWei/LLDynamicLaunchScreen/HEAD/Demo/Demo/Assets.xcassets/topImage_black.imageset/topImage_black.jpg -------------------------------------------------------------------------------- /Demo/Demo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/internetWei/LLDynamicLaunchScreen/HEAD/Demo/Demo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Demo/Demo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/internetWei/LLDynamicLaunchScreen/HEAD/Demo/Demo/Info.plist -------------------------------------------------------------------------------- /Demo/Demo/LaunchScreen_CH.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/internetWei/LLDynamicLaunchScreen/HEAD/Demo/Demo/LaunchScreen_CH.storyboard -------------------------------------------------------------------------------- /Demo/Demo/LaunchScreen_EN.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/internetWei/LLDynamicLaunchScreen/HEAD/Demo/Demo/LaunchScreen_EN.storyboard -------------------------------------------------------------------------------- /Demo/Demo/MBProgressHUD/MBProgressHUD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/internetWei/LLDynamicLaunchScreen/HEAD/Demo/Demo/MBProgressHUD/MBProgressHUD.h -------------------------------------------------------------------------------- /Demo/Demo/MBProgressHUD/MBProgressHUD.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/internetWei/LLDynamicLaunchScreen/HEAD/Demo/Demo/MBProgressHUD/MBProgressHUD.m -------------------------------------------------------------------------------- /Demo/Demo/Masonry/MASCompositeConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/internetWei/LLDynamicLaunchScreen/HEAD/Demo/Demo/Masonry/MASCompositeConstraint.h -------------------------------------------------------------------------------- /Demo/Demo/Masonry/MASCompositeConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/internetWei/LLDynamicLaunchScreen/HEAD/Demo/Demo/Masonry/MASCompositeConstraint.m -------------------------------------------------------------------------------- /Demo/Demo/Masonry/MASConstraint+Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/internetWei/LLDynamicLaunchScreen/HEAD/Demo/Demo/Masonry/MASConstraint+Private.h -------------------------------------------------------------------------------- /Demo/Demo/Masonry/MASConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/internetWei/LLDynamicLaunchScreen/HEAD/Demo/Demo/Masonry/MASConstraint.h -------------------------------------------------------------------------------- /Demo/Demo/Masonry/MASConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/internetWei/LLDynamicLaunchScreen/HEAD/Demo/Demo/Masonry/MASConstraint.m -------------------------------------------------------------------------------- /Demo/Demo/Masonry/MASConstraintMaker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/internetWei/LLDynamicLaunchScreen/HEAD/Demo/Demo/Masonry/MASConstraintMaker.h -------------------------------------------------------------------------------- /Demo/Demo/Masonry/MASConstraintMaker.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/internetWei/LLDynamicLaunchScreen/HEAD/Demo/Demo/Masonry/MASConstraintMaker.m -------------------------------------------------------------------------------- /Demo/Demo/Masonry/MASLayoutConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/internetWei/LLDynamicLaunchScreen/HEAD/Demo/Demo/Masonry/MASLayoutConstraint.h -------------------------------------------------------------------------------- /Demo/Demo/Masonry/MASLayoutConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/internetWei/LLDynamicLaunchScreen/HEAD/Demo/Demo/Masonry/MASLayoutConstraint.m -------------------------------------------------------------------------------- /Demo/Demo/Masonry/MASUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/internetWei/LLDynamicLaunchScreen/HEAD/Demo/Demo/Masonry/MASUtilities.h -------------------------------------------------------------------------------- /Demo/Demo/Masonry/MASViewAttribute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/internetWei/LLDynamicLaunchScreen/HEAD/Demo/Demo/Masonry/MASViewAttribute.h -------------------------------------------------------------------------------- /Demo/Demo/Masonry/MASViewAttribute.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/internetWei/LLDynamicLaunchScreen/HEAD/Demo/Demo/Masonry/MASViewAttribute.m -------------------------------------------------------------------------------- /Demo/Demo/Masonry/MASViewConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/internetWei/LLDynamicLaunchScreen/HEAD/Demo/Demo/Masonry/MASViewConstraint.h -------------------------------------------------------------------------------- /Demo/Demo/Masonry/MASViewConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/internetWei/LLDynamicLaunchScreen/HEAD/Demo/Demo/Masonry/MASViewConstraint.m -------------------------------------------------------------------------------- /Demo/Demo/Masonry/Masonry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/internetWei/LLDynamicLaunchScreen/HEAD/Demo/Demo/Masonry/Masonry.h -------------------------------------------------------------------------------- /Demo/Demo/Masonry/NSArray+MASAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/internetWei/LLDynamicLaunchScreen/HEAD/Demo/Demo/Masonry/NSArray+MASAdditions.h -------------------------------------------------------------------------------- /Demo/Demo/Masonry/NSArray+MASAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/internetWei/LLDynamicLaunchScreen/HEAD/Demo/Demo/Masonry/NSArray+MASAdditions.m -------------------------------------------------------------------------------- /Demo/Demo/Masonry/NSArray+MASShorthandAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/internetWei/LLDynamicLaunchScreen/HEAD/Demo/Demo/Masonry/NSArray+MASShorthandAdditions.h -------------------------------------------------------------------------------- /Demo/Demo/Masonry/NSLayoutConstraint+MASDebugAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/internetWei/LLDynamicLaunchScreen/HEAD/Demo/Demo/Masonry/NSLayoutConstraint+MASDebugAdditions.h -------------------------------------------------------------------------------- /Demo/Demo/Masonry/NSLayoutConstraint+MASDebugAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/internetWei/LLDynamicLaunchScreen/HEAD/Demo/Demo/Masonry/NSLayoutConstraint+MASDebugAdditions.m -------------------------------------------------------------------------------- /Demo/Demo/Masonry/View+MASAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/internetWei/LLDynamicLaunchScreen/HEAD/Demo/Demo/Masonry/View+MASAdditions.h -------------------------------------------------------------------------------- /Demo/Demo/Masonry/View+MASAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/internetWei/LLDynamicLaunchScreen/HEAD/Demo/Demo/Masonry/View+MASAdditions.m -------------------------------------------------------------------------------- /Demo/Demo/Masonry/View+MASShorthandAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/internetWei/LLDynamicLaunchScreen/HEAD/Demo/Demo/Masonry/View+MASShorthandAdditions.h -------------------------------------------------------------------------------- /Demo/Demo/Masonry/ViewController+MASAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/internetWei/LLDynamicLaunchScreen/HEAD/Demo/Demo/Masonry/ViewController+MASAdditions.h -------------------------------------------------------------------------------- /Demo/Demo/Masonry/ViewController+MASAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/internetWei/LLDynamicLaunchScreen/HEAD/Demo/Demo/Masonry/ViewController+MASAdditions.m -------------------------------------------------------------------------------- /Demo/Demo/UIImage+Category.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/internetWei/LLDynamicLaunchScreen/HEAD/Demo/Demo/UIImage+Category.h -------------------------------------------------------------------------------- /Demo/Demo/UIImage+Category.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/internetWei/LLDynamicLaunchScreen/HEAD/Demo/Demo/UIImage+Category.m -------------------------------------------------------------------------------- /Demo/Demo/UIView+HUD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/internetWei/LLDynamicLaunchScreen/HEAD/Demo/Demo/UIView+HUD.h -------------------------------------------------------------------------------- /Demo/Demo/UIView+HUD.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/internetWei/LLDynamicLaunchScreen/HEAD/Demo/Demo/UIView+HUD.m -------------------------------------------------------------------------------- /Demo/Demo/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/internetWei/LLDynamicLaunchScreen/HEAD/Demo/Demo/ViewController.h -------------------------------------------------------------------------------- /Demo/Demo/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/internetWei/LLDynamicLaunchScreen/HEAD/Demo/Demo/ViewController.m -------------------------------------------------------------------------------- /Demo/Demo/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/internetWei/LLDynamicLaunchScreen/HEAD/Demo/Demo/en.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Demo/Demo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/internetWei/LLDynamicLaunchScreen/HEAD/Demo/Demo/main.m -------------------------------------------------------------------------------- /Demo/Demo/zh-Hans.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/internetWei/LLDynamicLaunchScreen/HEAD/Demo/Demo/zh-Hans.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Demo/Demo/zh-Hans.lproj/Main.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Demo/SwiftDemo/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/internetWei/LLDynamicLaunchScreen/HEAD/Demo/SwiftDemo/AppDelegate.swift -------------------------------------------------------------------------------- /Demo/SwiftDemo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/internetWei/LLDynamicLaunchScreen/HEAD/Demo/SwiftDemo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Demo/SwiftDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/internetWei/LLDynamicLaunchScreen/HEAD/Demo/SwiftDemo/Info.plist -------------------------------------------------------------------------------- /Demo/SwiftDemo/SnapKit/Constraint.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/internetWei/LLDynamicLaunchScreen/HEAD/Demo/SwiftDemo/SnapKit/Constraint.swift -------------------------------------------------------------------------------- /Demo/SwiftDemo/SnapKit/ConstraintAttributes.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/internetWei/LLDynamicLaunchScreen/HEAD/Demo/SwiftDemo/SnapKit/ConstraintAttributes.swift -------------------------------------------------------------------------------- /Demo/SwiftDemo/SnapKit/ConstraintConfig.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/internetWei/LLDynamicLaunchScreen/HEAD/Demo/SwiftDemo/SnapKit/ConstraintConfig.swift -------------------------------------------------------------------------------- /Demo/SwiftDemo/SnapKit/ConstraintConstantTarget.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/internetWei/LLDynamicLaunchScreen/HEAD/Demo/SwiftDemo/SnapKit/ConstraintConstantTarget.swift -------------------------------------------------------------------------------- /Demo/SwiftDemo/SnapKit/ConstraintDSL.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/internetWei/LLDynamicLaunchScreen/HEAD/Demo/SwiftDemo/SnapKit/ConstraintDSL.swift -------------------------------------------------------------------------------- /Demo/SwiftDemo/SnapKit/ConstraintDescription.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/internetWei/LLDynamicLaunchScreen/HEAD/Demo/SwiftDemo/SnapKit/ConstraintDescription.swift -------------------------------------------------------------------------------- /Demo/SwiftDemo/SnapKit/ConstraintDirectionalInsetTarget.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/internetWei/LLDynamicLaunchScreen/HEAD/Demo/SwiftDemo/SnapKit/ConstraintDirectionalInsetTarget.swift -------------------------------------------------------------------------------- /Demo/SwiftDemo/SnapKit/ConstraintDirectionalInsets.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/internetWei/LLDynamicLaunchScreen/HEAD/Demo/SwiftDemo/SnapKit/ConstraintDirectionalInsets.swift -------------------------------------------------------------------------------- /Demo/SwiftDemo/SnapKit/ConstraintInsetTarget.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/internetWei/LLDynamicLaunchScreen/HEAD/Demo/SwiftDemo/SnapKit/ConstraintInsetTarget.swift -------------------------------------------------------------------------------- /Demo/SwiftDemo/SnapKit/ConstraintInsets.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/internetWei/LLDynamicLaunchScreen/HEAD/Demo/SwiftDemo/SnapKit/ConstraintInsets.swift -------------------------------------------------------------------------------- /Demo/SwiftDemo/SnapKit/ConstraintItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/internetWei/LLDynamicLaunchScreen/HEAD/Demo/SwiftDemo/SnapKit/ConstraintItem.swift -------------------------------------------------------------------------------- /Demo/SwiftDemo/SnapKit/ConstraintLayoutGuide+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/internetWei/LLDynamicLaunchScreen/HEAD/Demo/SwiftDemo/SnapKit/ConstraintLayoutGuide+Extensions.swift -------------------------------------------------------------------------------- /Demo/SwiftDemo/SnapKit/ConstraintLayoutGuide.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/internetWei/LLDynamicLaunchScreen/HEAD/Demo/SwiftDemo/SnapKit/ConstraintLayoutGuide.swift -------------------------------------------------------------------------------- /Demo/SwiftDemo/SnapKit/ConstraintLayoutGuideDSL.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/internetWei/LLDynamicLaunchScreen/HEAD/Demo/SwiftDemo/SnapKit/ConstraintLayoutGuideDSL.swift -------------------------------------------------------------------------------- /Demo/SwiftDemo/SnapKit/ConstraintLayoutSupport.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/internetWei/LLDynamicLaunchScreen/HEAD/Demo/SwiftDemo/SnapKit/ConstraintLayoutSupport.swift -------------------------------------------------------------------------------- /Demo/SwiftDemo/SnapKit/ConstraintLayoutSupportDSL.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/internetWei/LLDynamicLaunchScreen/HEAD/Demo/SwiftDemo/SnapKit/ConstraintLayoutSupportDSL.swift -------------------------------------------------------------------------------- /Demo/SwiftDemo/SnapKit/ConstraintMaker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/internetWei/LLDynamicLaunchScreen/HEAD/Demo/SwiftDemo/SnapKit/ConstraintMaker.swift -------------------------------------------------------------------------------- /Demo/SwiftDemo/SnapKit/ConstraintMakerEditable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/internetWei/LLDynamicLaunchScreen/HEAD/Demo/SwiftDemo/SnapKit/ConstraintMakerEditable.swift -------------------------------------------------------------------------------- /Demo/SwiftDemo/SnapKit/ConstraintMakerExtendable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/internetWei/LLDynamicLaunchScreen/HEAD/Demo/SwiftDemo/SnapKit/ConstraintMakerExtendable.swift -------------------------------------------------------------------------------- /Demo/SwiftDemo/SnapKit/ConstraintMakerFinalizable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/internetWei/LLDynamicLaunchScreen/HEAD/Demo/SwiftDemo/SnapKit/ConstraintMakerFinalizable.swift -------------------------------------------------------------------------------- /Demo/SwiftDemo/SnapKit/ConstraintMakerPrioritizable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/internetWei/LLDynamicLaunchScreen/HEAD/Demo/SwiftDemo/SnapKit/ConstraintMakerPrioritizable.swift -------------------------------------------------------------------------------- /Demo/SwiftDemo/SnapKit/ConstraintMakerRelatable+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/internetWei/LLDynamicLaunchScreen/HEAD/Demo/SwiftDemo/SnapKit/ConstraintMakerRelatable+Extensions.swift -------------------------------------------------------------------------------- /Demo/SwiftDemo/SnapKit/ConstraintMakerRelatable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/internetWei/LLDynamicLaunchScreen/HEAD/Demo/SwiftDemo/SnapKit/ConstraintMakerRelatable.swift -------------------------------------------------------------------------------- /Demo/SwiftDemo/SnapKit/ConstraintMultiplierTarget.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/internetWei/LLDynamicLaunchScreen/HEAD/Demo/SwiftDemo/SnapKit/ConstraintMultiplierTarget.swift -------------------------------------------------------------------------------- /Demo/SwiftDemo/SnapKit/ConstraintOffsetTarget.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/internetWei/LLDynamicLaunchScreen/HEAD/Demo/SwiftDemo/SnapKit/ConstraintOffsetTarget.swift -------------------------------------------------------------------------------- /Demo/SwiftDemo/SnapKit/ConstraintPriority.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/internetWei/LLDynamicLaunchScreen/HEAD/Demo/SwiftDemo/SnapKit/ConstraintPriority.swift -------------------------------------------------------------------------------- /Demo/SwiftDemo/SnapKit/ConstraintPriorityTarget.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/internetWei/LLDynamicLaunchScreen/HEAD/Demo/SwiftDemo/SnapKit/ConstraintPriorityTarget.swift -------------------------------------------------------------------------------- /Demo/SwiftDemo/SnapKit/ConstraintRelatableTarget.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/internetWei/LLDynamicLaunchScreen/HEAD/Demo/SwiftDemo/SnapKit/ConstraintRelatableTarget.swift -------------------------------------------------------------------------------- /Demo/SwiftDemo/SnapKit/ConstraintRelation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/internetWei/LLDynamicLaunchScreen/HEAD/Demo/SwiftDemo/SnapKit/ConstraintRelation.swift -------------------------------------------------------------------------------- /Demo/SwiftDemo/SnapKit/ConstraintView+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/internetWei/LLDynamicLaunchScreen/HEAD/Demo/SwiftDemo/SnapKit/ConstraintView+Extensions.swift -------------------------------------------------------------------------------- /Demo/SwiftDemo/SnapKit/ConstraintView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/internetWei/LLDynamicLaunchScreen/HEAD/Demo/SwiftDemo/SnapKit/ConstraintView.swift -------------------------------------------------------------------------------- /Demo/SwiftDemo/SnapKit/ConstraintViewDSL.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/internetWei/LLDynamicLaunchScreen/HEAD/Demo/SwiftDemo/SnapKit/ConstraintViewDSL.swift -------------------------------------------------------------------------------- /Demo/SwiftDemo/SnapKit/Debugging.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/internetWei/LLDynamicLaunchScreen/HEAD/Demo/SwiftDemo/SnapKit/Debugging.swift -------------------------------------------------------------------------------- /Demo/SwiftDemo/SnapKit/LayoutConstraint.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/internetWei/LLDynamicLaunchScreen/HEAD/Demo/SwiftDemo/SnapKit/LayoutConstraint.swift -------------------------------------------------------------------------------- /Demo/SwiftDemo/SnapKit/LayoutConstraintItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/internetWei/LLDynamicLaunchScreen/HEAD/Demo/SwiftDemo/SnapKit/LayoutConstraintItem.swift -------------------------------------------------------------------------------- /Demo/SwiftDemo/SnapKit/Typealiases.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/internetWei/LLDynamicLaunchScreen/HEAD/Demo/SwiftDemo/SnapKit/Typealiases.swift -------------------------------------------------------------------------------- /Demo/SwiftDemo/SnapKit/UILayoutSupport+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/internetWei/LLDynamicLaunchScreen/HEAD/Demo/SwiftDemo/SnapKit/UILayoutSupport+Extensions.swift -------------------------------------------------------------------------------- /Demo/SwiftDemo/SwiftDemo-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/internetWei/LLDynamicLaunchScreen/HEAD/Demo/SwiftDemo/SwiftDemo-Bridging-Header.h -------------------------------------------------------------------------------- /Demo/SwiftDemo/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/internetWei/LLDynamicLaunchScreen/HEAD/Demo/SwiftDemo/ViewController.swift -------------------------------------------------------------------------------- /Demo/SwiftDemo/zh-Hans.lproj/Main.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Demo/Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/internetWei/LLDynamicLaunchScreen/HEAD/Demo/Tests/Info.plist -------------------------------------------------------------------------------- /Demo/Tests/Resources/LaunchImage/launchImage_hor_dark.ktx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/internetWei/LLDynamicLaunchScreen/HEAD/Demo/Tests/Resources/LaunchImage/launchImage_hor_dark.ktx -------------------------------------------------------------------------------- /Demo/Tests/Resources/LaunchImage/launchImage_hor_light.ktx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/internetWei/LLDynamicLaunchScreen/HEAD/Demo/Tests/Resources/LaunchImage/launchImage_hor_light.ktx -------------------------------------------------------------------------------- /Demo/Tests/Resources/LaunchImage/launchImage_ver_dark.ktx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/internetWei/LLDynamicLaunchScreen/HEAD/Demo/Tests/Resources/LaunchImage/launchImage_ver_dark.ktx -------------------------------------------------------------------------------- /Demo/Tests/Resources/LaunchImage/launchImage_ver_light.ktx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/internetWei/LLDynamicLaunchScreen/HEAD/Demo/Tests/Resources/LaunchImage/launchImage_ver_light.ktx -------------------------------------------------------------------------------- /Demo/Tests/Resources/hor_dark.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/internetWei/LLDynamicLaunchScreen/HEAD/Demo/Tests/Resources/hor_dark.jpg -------------------------------------------------------------------------------- /Demo/Tests/Resources/hor_light.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/internetWei/LLDynamicLaunchScreen/HEAD/Demo/Tests/Resources/hor_light.jpg -------------------------------------------------------------------------------- /Demo/Tests/Resources/ver_dark.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/internetWei/LLDynamicLaunchScreen/HEAD/Demo/Tests/Resources/ver_dark.jpg -------------------------------------------------------------------------------- /Demo/Tests/Resources/ver_light.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/internetWei/LLDynamicLaunchScreen/HEAD/Demo/Tests/Resources/ver_light.jpg -------------------------------------------------------------------------------- /Demo/Tests/Tests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/internetWei/LLDynamicLaunchScreen/HEAD/Demo/Tests/Tests.m -------------------------------------------------------------------------------- /Demo/Tests/UIImage+Category.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/internetWei/LLDynamicLaunchScreen/HEAD/Demo/Tests/UIImage+Category.h -------------------------------------------------------------------------------- /Demo/Tests/UIImage+Category.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/internetWei/LLDynamicLaunchScreen/HEAD/Demo/Tests/UIImage+Category.m -------------------------------------------------------------------------------- /Framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/internetWei/LLDynamicLaunchScreen/HEAD/Framework/Info.plist -------------------------------------------------------------------------------- /Framework/LLDynamicLaunchScreen.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/internetWei/LLDynamicLaunchScreen/HEAD/Framework/LLDynamicLaunchScreen.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Framework/LLDynamicLaunchScreen.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/internetWei/LLDynamicLaunchScreen/HEAD/Framework/LLDynamicLaunchScreen.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Framework/LLDynamicLaunchScreen.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/internetWei/LLDynamicLaunchScreen/HEAD/Framework/LLDynamicLaunchScreen.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Framework/LLDynamicLaunchScreen.xcodeproj/xcshareddata/xcschemes/LLDynamicLaunchScreen.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/internetWei/LLDynamicLaunchScreen/HEAD/Framework/LLDynamicLaunchScreen.xcodeproj/xcshareddata/xcschemes/LLDynamicLaunchScreen.xcscheme -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/internetWei/LLDynamicLaunchScreen/HEAD/LICENSE -------------------------------------------------------------------------------- /LLDynamicLaunchScreen.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/internetWei/LLDynamicLaunchScreen/HEAD/LLDynamicLaunchScreen.podspec -------------------------------------------------------------------------------- /LLDynamicLaunchScreen/LLDynamicLaunchScreen+LLPrivate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/internetWei/LLDynamicLaunchScreen/HEAD/LLDynamicLaunchScreen/LLDynamicLaunchScreen+LLPrivate.m -------------------------------------------------------------------------------- /LLDynamicLaunchScreen/LLDynamicLaunchScreen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/internetWei/LLDynamicLaunchScreen/HEAD/LLDynamicLaunchScreen/LLDynamicLaunchScreen.h -------------------------------------------------------------------------------- /LLDynamicLaunchScreen/LLDynamicLaunchScreen.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/internetWei/LLDynamicLaunchScreen/HEAD/LLDynamicLaunchScreen/LLDynamicLaunchScreen.m -------------------------------------------------------------------------------- /LLDynamicLaunchScreen/UIImage+LLPrivate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/internetWei/LLDynamicLaunchScreen/HEAD/LLDynamicLaunchScreen/UIImage+LLPrivate.m -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/internetWei/LLDynamicLaunchScreen/HEAD/README.md -------------------------------------------------------------------------------- /README.osc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/internetWei/LLDynamicLaunchScreen/HEAD/README.osc.md -------------------------------------------------------------------------------- /Resources/demo1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/internetWei/LLDynamicLaunchScreen/HEAD/Resources/demo1.gif -------------------------------------------------------------------------------- /Resources/demo2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/internetWei/LLDynamicLaunchScreen/HEAD/Resources/demo2.gif --------------------------------------------------------------------------------