Proper tvOS alerts for iOS
Available soon on Havoc
Alpine uses classes and styling taken directly from tvOS to bring a clean and modern look to alerts system wide. Cephei is required for use in all apps on all jailbreaks (rootful & rootless) on iOS 14.0 - 16.x.
- Use fullscreen or alert only background blur
- Set type of background blur styling (iOS/tvOS)
- Choose interface style (dark/light/system) for all alert elements
- Tap anywhere outside alert view to dismiss
- Hide cancel button globally (automatically enables tap to dismiss)
%hook UIInterfaceActionVisualStyle
- (id)initWithConcreteVisualStyle:(id)arg0 {
UIInterfaceActionConcreteVisualStyle_AppleTV *style = [%c(UIInterfaceActionConcreteVisualStyle_AppleTV) new];
return %orig(style);
}
%end