This commit is contained in:
2025-10-30 20:46:54 +08:00
parent 247a87891e
commit 6993bfd682
5 changed files with 247 additions and 11 deletions

View File

@@ -0,0 +1,19 @@
//
// KBFullAccessGuideView.h
// CustomKeyboard
//
// A lightweight overlay prompting user to enable "Allow Full Access".
//
#import <UIKit/UIKit.h>
@interface KBFullAccessGuideView : UIView
/// Present the guide overlay inside a given parent view (or its window).
+ (void)showInView:(UIView *)parent;
/// Dismiss if shown.
+ (void)dismissFromView:(UIView *)parent;
@end