DylibSplash is a lightweight iOS dylib overlay that displays a branded glass half-sheet when an app launches — ideal for sideloaded builds where you want a consistent identity (logo, title, message) across your signed apps.
Built and maintained by sideload.party. Created by XbP.AYT.
- Shows a liquid-glass intro half-sheet on app launch (once per app by default)
- Optional quick overlay menu (e.g., long-press gesture) for links and basic app info
- Designed to be clean, minimal, and easy to theme
- iOS 16+ (tested on 16.6.1–18.5; newer versions may work)
- Works best on arm64 / arm64e
- If you enable animated GIF logos (ImageIO), link ImageIO.framework
You can customize:
- Logo / icon
- Title + subtitle copy
- Accent color / blur strength
- Footer row links (sideload.party, GitHub, etc.)
xcrun --sdk iphoneos clang
-arch arm64 -arch arm64e
-dynamiclib
-fobjc-arc
-ObjC
-isysroot "$SDK"
-miphoneos-version-min=16.5
-I"$SRC_PATH"
-Wl,-install_name,@rpath/DylibSplash.dylib
-framework Foundation
-framework UIKit
-framework AVFoundation
-framework CoreGraphics
-framework QuartzCore
-framework ImageIO
"${MFILES[@]}"
-o "$OUT"
